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 externalId 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_user_external_idimportParticipantLeaveBodyUserExternalId# TODO update the JSON string belowjson="{}"# create an instance of ParticipantLeaveBodyUserExternalId from a JSON stringparticipant_leave_body_user_external_id_instance=ParticipantLeaveBodyUserExternalId.from_json(json)
# print the JSON string representation of the objectprint(ParticipantLeaveBodyUserExternalId.to_json())
# convert the object into a dictparticipant_leave_body_user_external_id_dict=participant_leave_body_user_external_id_instance.to_dict()
# create an instance of ParticipantLeaveBodyUserExternalId from a dictparticipant_leave_body_user_external_id_from_dict=ParticipantLeaveBodyUserExternalId.from_dict(participant_leave_body_user_external_id_dict)