Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.22 KB

File metadata and controls

30 lines (21 loc) · 1.22 KB

FindCalendarEventDuplicatesRequest

Properties

Name Type Description Notes
data List[CalendarEvent] [optional]
ids List[UUID] [optional]

Example

from twentycrm_client.models.find_calendar_event_duplicates_request import FindCalendarEventDuplicatesRequest

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

# convert the object into a dict
find_calendar_event_duplicates_request_dict = find_calendar_event_duplicates_request_instance.to_dict()
# create an instance of FindCalendarEventDuplicatesRequest from a dict
find_calendar_event_duplicates_request_from_dict = FindCalendarEventDuplicatesRequest.from_dict(find_calendar_event_duplicates_request_dict)

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