MemberRequest

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

Parameters

userId
custom

Custom data for this object

role

Constructors

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

Properties

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