VoipParticipant

data class VoipParticipant(    val identifier: String,     val fqdn: String? = null,     val alias: String? = null,     val firstName: String? = null,     val lastName: String? = null,     val displayName: String? = null,     val type: Int = UNKNOWN)

A class to be returned by the avent related to voipParticipant States

Parameters

identifier

is the identifier of The user voipParticipant in the call

firstName

is the firstname of The user voipParticipant in the call

lastName

is the lastname of the user voipParticipant in the call

type

the type of the voipParticipant describe in STWVCall.STWVCallParticipantType

Constructors

Link copied to clipboard
fun VoipParticipant(    identifier: String,     fqdn: String? = null,     alias: String? = null,     firstName: String? = null,     lastName: String? = null,     displayName: String? = null,     type: Int = UNKNOWN)

Properties

Link copied to clipboard
val alias: String? = null
Link copied to clipboard
val displayName: String? = null
Link copied to clipboard
val firstName: String? = null
Link copied to clipboard
val fqdn: String? = null
Link copied to clipboard
val identifier: String
Link copied to clipboard
val lastName: String? = null
Link copied to clipboard
val type: Int