DraftList

@Serializable
data class DraftList(val count: Int, val limit: Int? = null, val nextPageToken: String? = null, val drafts: List<Draft>)

Paginated list of drafts.

Constructors

Link copied to clipboard
constructor(count: Int, limit: Int? = null, nextPageToken: String? = null, drafts: List<Draft>)

Properties

Link copied to clipboard
val count: Int
Link copied to clipboard
Link copied to clipboard
val limit: Int?
Link copied to clipboard
@SerialName(value = "next_page_token")
val nextPageToken: String?