Skip to content

ConferenceOptions

Adnan Arnautović edited this page Jan 26, 2023 · 1 revision

ConferenceOptions(audio, video, _ videoOptions)

Description

Creates an instance of ConferenceOptions.

Arguments

  • audio: Bool - Flag indicating whether the local audio should be enabled for the conference call. true if the local audio should be enabled. Enabled by default.
  • video: Bool - Flag indicating whether the local video should be enabled for the conference call. true if the local video should be enabled. Disabled by default.
  • videoOptions: VideoOptions - Optional video configuration to be used when joining a conference call.

Returns

Example

let conferenceOptions = ConferenceOptions(audio: false, video: true, VideoOptions(CameraOrientation.back))

audio

Description

Getter for the audio field.

Arguments

  • none

Returns

  • Bool - Value of the audio field.

Example

let conferenceOptions = ConferenceOptions(audio: false, video: true, VideoOptions(CameraOrientation.back))
let audio = conferenceOptions.audio

video

Description

Getter for the video field.

Arguments

  • none

Returns

  • Bool - Value of the video field.

Example

let conferenceOptions = ConferenceOptions(audio: false, video: true, VideoOptions(CameraOrientation.back))
let video = conferenceOptions.video

videoOptions

Description

Getter for the videoOptions field.

Arguments

  • none

Returns

Example

let conferenceOptions = ConferenceOptions(audio: false, video: true, VideoOptions(CameraOrientation.back))
let videoOptions = conferenceOptions.videoOptions
Clone this wiki locally