DeviceResponse

data class DeviceResponse(    @Json(name = "created_at") val createdAt: OffsetDateTime,     @Json(name = "id") val id: String,     @Json(name = "push_provider") val pushProvider: String,     @Json(name = "user_id") val userId: String,     @Json(name = "disabled") val disabled: Boolean? = null,     @Json(name = "disabled_reason") val disabledReason: String? = null,     @Json(name = "push_provider_name") val pushProviderName: String? = null,     @Json(name = "voip") val voip: Boolean? = null)

Response for Device

Constructors

Link copied to clipboard
constructor(    @Json(name = "created_at") createdAt: OffsetDateTime,     @Json(name = "id") id: String,     @Json(name = "push_provider") pushProvider: String,     @Json(name = "user_id") userId: String,     @Json(name = "disabled") disabled: Boolean? = null,     @Json(name = "disabled_reason") disabledReason: String? = null,     @Json(name = "push_provider_name") pushProviderName: String? = null,     @Json(name = "voip") voip: Boolean? = null)

Properties

Link copied to clipboard
val createdAt: OffsetDateTime
Link copied to clipboard
val disabled: Boolean? = null
Link copied to clipboard
val disabledReason: String? = null
Link copied to clipboard
val id: String
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val voip: Boolean? = null