MemberRequest

data class MemberRequest(    @Json(name = "user_id") val userId: String,     @Json(name = "role") val role: String? = null,     @Json(name = "custom") val custom: Map<String, Any?>? = null)

MemberRequest is the payload for adding a member to a call.

Constructors

Link copied to clipboard
constructor(    @Json(name = "user_id") userId: String,     @Json(name = "role") role: String? = null,     @Json(name = "custom") custom: Map<String, Any?>? = null)

Properties

Link copied to clipboard
val custom: Map<String, Any?>? = null
Link copied to clipboard
val role: String? = null
Link copied to clipboard