Response

@Serializable
data class Response(val contacts: List<GetSupport.Response.Contact> = listOf(), val supportPage: String? = null)

Constructors

Link copied to clipboard
constructor(contacts: List<GetSupport.Response.Contact> = listOf(), supportPage: String? = null)

Types

Link copied to clipboard
@Serializable
data class Contact(val emailAddress: String? = null, val userId: UserId? = null, val role: GetSupport.Response.Contact.Role)

Properties

Link copied to clipboard
@SerialName(value = "contacts")
val contacts: List<GetSupport.Response.Contact>
Link copied to clipboard
@SerialName(value = "support_page")
val supportPage: String?