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
fromfreeclimb.models.conference_participant_listimportConferenceParticipantList# TODO update the JSON string belowjson="{}"# create an instance of ConferenceParticipantList from a JSON stringconference_participant_list_instance=ConferenceParticipantList.from_json(json)
# print the JSON string representation of the objectprint(ConferenceParticipantList.to_json())
# convert the object into a dictconference_participant_list_dict=conference_participant_list_instance.to_dict()
# create an instance of ConferenceParticipantList from a dictconference_participant_list_from_dict=ConferenceParticipantList.from_dict(conference_participant_list_dict)