Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.31 KB

File metadata and controls

33 lines (24 loc) · 1.31 KB

EventNoteListResponseSchema

Paginated list of event notes

Properties

Name Type Description Notes
success bool Success status
offset int Number of items skipped (pagination offset)
limit int Maximum number of items returned
data List[EventNoteResponseSchema] List of event notes

Example

from cloudbeds_pms.models.event_note_list_response_schema import EventNoteListResponseSchema

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

# convert the object into a dict
event_note_list_response_schema_dict = event_note_list_response_schema_instance.to_dict()
# create an instance of EventNoteListResponseSchema from a dict
event_note_list_response_schema_from_dict = EventNoteListResponseSchema.from_dict(event_note_list_response_schema_dict)

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