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
The participantId of the user that will be removed from the conversation. It will return 404 if the user can’t be found.
[optional]
Example
fromsunshine_conversations_client.model.participant_leave_body_participant_idimportParticipantLeaveBodyParticipantId# TODO update the JSON string belowjson="{}"# create an instance of ParticipantLeaveBodyParticipantId from a JSON stringparticipant_leave_body_participant_id_instance=ParticipantLeaveBodyParticipantId.from_json(json)
# print the JSON string representation of the objectprint(ParticipantLeaveBodyParticipantId.to_json())
# convert the object into a dictparticipant_leave_body_participant_id_dict=participant_leave_body_participant_id_instance.to_dict()
# create an instance of ParticipantLeaveBodyParticipantId from a dictparticipant_leave_body_participant_id_from_dict=ParticipantLeaveBodyParticipantId.from_dict(participant_leave_body_participant_id_dict)