Skip to content

Latest commit

 

History

History
22 lines (16 loc) · 931 Bytes

UpdateConferenceParticipantRequest.md

File metadata and controls

22 lines (16 loc) · 931 Bytes

Freeclimb::UpdateConferenceParticipantRequest

Properties

Name Type Description Notes
talk Boolean (Optional) Default is `true`. Setting to `false` mutes the Participant. FreeClimb returns an error and ignores any other value. [optional]
listen Boolean (Optional) Default is `true`. Setting to `false` silences the Conference for this Participant. FreeClimb returns an error and ignores any other value. [optional]
dtmf_pass_through Boolean (Optional) Default is `true`. Setting to `false` mutes dtmf audio for this Participant. FreeClimb returns an error and ignores any other value. [optional]

Example

require 'freeclimb'

instance = Freeclimb::UpdateConferenceParticipantRequest.new(
  talk: null,
  listen: null,
  dtmf_pass_through: null
)