UserRequest
data class UserRequest(@Json(name = "id") val id: String, @Json(name = "custom") val custom: Map<String, Any?>? = null, @Json(name = "image") val image: String? = null, @Json(name = "invisible") val invisible: Boolean? = null, @Json(name = "language") val language: String? = null, @Json(name = "name") val name: String? = null, @Json(name = "privacy_settings") val privacySettings: PrivacySettings? = null, @Json(name = "push_notifications") val pushNotifications: PushNotificationSettingsInput? = null)
Parameters
id
User ID
custom
image
invisible
language
name
Optional name of user
privacySettings
pushNotifications
Constructors
Link copied to clipboard
constructor(@Json(name = "id") id: String, @Json(name = "custom") custom: Map<String, Any?>? = null, @Json(name = "image") image: String? = null, @Json(name = "invisible") invisible: Boolean? = null, @Json(name = "language") language: String? = null, @Json(name = "name") name: String? = null, @Json(name = "privacy_settings") privacySettings: PrivacySettings? = null, @Json(name = "push_notifications") pushNotifications: PushNotificationSettingsInput? = null)