You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
(Optional) Default is `true`. Setting to `false` mutes the Participant. FreeClimb returns an error and ignores any other value.
[optional]
listen
bool
(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
bool
(Optional) Default is `true`. Setting to `false` mutes dtmf audio for this Participant. FreeClimb returns an error and ignores any other value.
[optional]
Example
fromfreeclimb.models.update_conference_participant_requestimportUpdateConferenceParticipantRequest# TODO update the JSON string belowjson="{}"# create an instance of UpdateConferenceParticipantRequest from a JSON stringupdate_conference_participant_request_instance=UpdateConferenceParticipantRequest.from_json(json)
# print the JSON string representation of the objectprint(UpdateConferenceParticipantRequest.to_json())
# convert the object into a dictupdate_conference_participant_request_dict=update_conference_participant_request_instance.to_dict()
# create an instance of UpdateConferenceParticipantRequest from a dictupdate_conference_participant_request_from_dict=UpdateConferenceParticipantRequest.from_dict(update_conference_participant_request_dict)