LimitsSettingsRequest

data class LimitsSettingsRequest(@Json(name = "max_duration_seconds") val maxDurationSeconds: Int? = null, @Json(name = "max_participants") val maxParticipants: Int? = null, @Json(name = "max_participants_exclude_owner") val maxParticipantsExcludeOwner: Boolean? = null, @Json(name = "max_participants_exclude_roles") val maxParticipantsExcludeRoles: List<String>? = emptyList())

Constructors

Link copied to clipboard
constructor(@Json(name = "max_duration_seconds") maxDurationSeconds: Int? = null, @Json(name = "max_participants") maxParticipants: Int? = null, @Json(name = "max_participants_exclude_owner") maxParticipantsExcludeOwner: Boolean? = null, @Json(name = "max_participants_exclude_roles") maxParticipantsExcludeRoles: List<String>? = emptyList())

Properties

Link copied to clipboard
val maxDurationSeconds: Int? = null
Link copied to clipboard
val maxParticipants: Int? = null
Link copied to clipboard