DXNote

Represents an instance of a DX note.

public struct DXNote: Codable {
  
  public let noteId: String
  public let text: String
  public let classId: String?
  public let userId: String?
  public let studentId: String?
  public let courseId: String?
  public let lessonId: String?
}

Last updated