SipInboundCredentials
data class SipInboundCredentials(@Json(name = "call_id") val callId: String, @Json(name = "call_type") val callType: String, @Json(name = "token") val token: String, @Json(name = "user_id") val userId: String, @Json(name = "call_custom_data") val callCustomData: Map<String, Any?> = emptyMap(), @Json(name = "user_custom_data") val userCustomData: Map<String, Any?> = emptyMap())
Credentials for SIP inbound call authentication
Constructors
Link copied to clipboard
constructor(@Json(name = "call_id") callId: String, @Json(name = "call_type") callType: String, @Json(name = "token") token: String, @Json(name = "user_id") userId: String, @Json(name = "call_custom_data") callCustomData: Map<String, Any?> = emptyMap(), @Json(name = "user_custom_data") userCustomData: Map<String, Any?> = emptyMap())