CreateCall

data class CreateCall(val callType: Call.Type = Call.Type.audioVideo(), val maxDuration: Long? = 0, val recordingType: Call.Recording.Type? = Call.Recording.Type.Never) : ChatUI.Action

The create call action

Constructors

Link copied to clipboard
constructor(preferredType: Call.PreferredType = Call.PreferredType.audioVideo(), maxDuration: Long? = 0, recordingType: Call.Recording.Type? = Call.Recording.Type.Never)
constructor(callType: Call.Type = Call.Type.audioVideo(), maxDuration: Long? = 0, recordingType: Call.Recording.Type? = Call.Recording.Type.Never)

Properties

Link copied to clipboard
val callType: Call.Type

The call type

Link copied to clipboard
val maxDuration: Long? = 0

Optional max duration of the call in seconds

Link copied to clipboard
val recordingType: Call.Recording.Type?

Optional call recording type, default recording type is set to Call.Recording.Type.Never

Functions