Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 2.46 KB

ConferenceMember.md

File metadata and controls

34 lines (25 loc) · 2.46 KB

ConferenceMember

Properties

Name Type Description Notes
call_id str The call id associated with the event. [optional]
conference_id str The unique, Bandwidth-generated ID of the conference that was recorded [optional]
member_url str A URL that may be used to retrieve information about or update the state of this conference member. This is the URL of this member's Get Conference Member endpoint and Modify Conference Member endpoint. [optional]
mute bool Whether or not this member is currently muted. Members who are muted are still able to hear other participants. If used in a PUT request, updates this member's mute status. Has no effect if omitted. [optional]
hold bool Whether or not this member is currently on hold. Members who are on hold are not able to hear or speak in the conference. If used in a PUT request, updates this member's hold status. Has no effect if omitted. [optional]
call_ids_to_coach List[str] If this member had a value set for `callIdsToCoach` in its Conference verb or this list was added with a previous PUT request to modify the member, this is that list of calls. If present in a PUT request, modifies the calls that this member is coaching. Has no effect if omitted. See the documentation for the Conference verb for more details about coaching. Note that this will not add the matching calls to the conference; each call must individually execute a Conference verb to join. [optional]

Example

from bandwidth.models.conference_member import ConferenceMember

# TODO update the JSON string below
json = "{}"
# create an instance of ConferenceMember from a JSON string
conference_member_instance = ConferenceMember.from_json(json)
# print the JSON string representation of the object
print(ConferenceMember.to_json())

# convert the object into a dict
conference_member_dict = conference_member_instance.to_dict()
# create an instance of ConferenceMember from a dict
conference_member_from_dict = ConferenceMember.from_dict(conference_member_dict)

[Back to Model list] [Back to API list] [Back to README]