QueryCallMembersRequest

data class QueryCallMembersRequest(@Json(name = "id") val id: String, @Json(name = "type") val type: String, @Json(name = "filter_conditions") val filterConditions: Map<String, Any?>? = null, @Json(name = "limit") val limit: Int? = null, @Json(name = "next") val next: String? = null, @Json(name = "prev") val prev: String? = null, @Json(name = "sort") val sort: List<SortParam>? = null)

Parameters

id
type
filterConditions
limit
next
prev
sort

Constructors

Link copied to clipboard
constructor(@Json(name = "id") id: String, @Json(name = "type") type: String, @Json(name = "filter_conditions") filterConditions: Map<String, Any?>? = null, @Json(name = "limit") limit: Int? = null, @Json(name = "next") next: String? = null, @Json(name = "prev") prev: String? = null, @Json(name = "sort") sort: List<SortParam>? = null)

Properties

Link copied to clipboard
val filterConditions: Map<String, Any?>? = null
Link copied to clipboard
val id: String
Link copied to clipboard
val limit: Int? = null
Link copied to clipboard
val next: String? = null
Link copied to clipboard
val prev: String? = null
Link copied to clipboard
val sort: List<SortParam>? = null
Link copied to clipboard