Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.13 KB

File metadata and controls

31 lines (22 loc) · 1.13 KB

EventSingleResponseSchema

Single event response with success envelope

Properties

Name Type Description Notes
success bool Success status
data EventResponseSchema

Example

from cloudbeds_pms.models.event_single_response_schema import EventSingleResponseSchema

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

# convert the object into a dict
event_single_response_schema_dict = event_single_response_schema_instance.to_dict()
# create an instance of EventSingleResponseSchema from a dict
event_single_response_schema_from_dict = EventSingleResponseSchema.from_dict(event_single_response_schema_dict)

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