Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.48 KB

File metadata and controls

36 lines (27 loc) · 1.48 KB

CalendarEventParticipantForUpdate

Calendar event participants

Properties

Name Type Description Notes
handle str Handle [optional]
display_name str Display Name [optional]
is_organizer bool Is Organizer [optional]
response_status str Response Status [optional]
calendar_event_id UUID [optional]
person_id UUID [optional]
workspace_member_id UUID [optional]

Example

from twentycrm_client.models.calendar_event_participant_for_update import CalendarEventParticipantForUpdate

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

# convert the object into a dict
calendar_event_participant_for_update_dict = calendar_event_participant_for_update_instance.to_dict()
# create an instance of CalendarEventParticipantForUpdate from a dict
calendar_event_participant_for_update_from_dict = CalendarEventParticipantForUpdate.from_dict(calendar_event_participant_for_update_dict)

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