Identifier

@Serializable
data class Identifier(val appId: String, val email: String? = null, val phone: Phone? = null, val type: String? = null)

Payload object for an email address or phone number. You do not provide both identifiers when using this object for a call.

Parameters

appId

String identifier if the participant's app.

email

Participant's email.

phone
type

Identifier

Constructors

Link copied to clipboard
constructor(appId: String, email: String? = null, phone: Phone? = null, type: String? = null)

Properties

Link copied to clipboard
@SerialName(value = "appId")
val appId: String
Link copied to clipboard
@SerialName(value = "email")
val email: String? = null
Link copied to clipboard
@SerialName(value = "phone")
val phone: Phone? = null
Link copied to clipboard
@SerialName(value = "type")
val type: String? = null