Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.2 KB

UpdateConferenceRequest.md

File metadata and controls

31 lines (22 loc) · 1.2 KB

UpdateConferenceRequest

Properties

Name Type Description Notes
alias str Description for this conference. Maximum 64 characters. [optional]
play_beep PlayBeep [optional]
status UpdateConferenceRequestStatus [optional]

Example

from freeclimb.models.update_conference_request import UpdateConferenceRequest

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

# convert the object into a dict
update_conference_request_dict = update_conference_request_instance.to_dict()
# create an instance of UpdateConferenceRequest from a dict
update_conference_request_from_dict = UpdateConferenceRequest.from_dict(update_conference_request_dict)

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