| Name | Type | Description | Notes |
|---|---|---|---|
| data | List[ApplicationResponseSchema] |
from cloudbeds_pms.models.application_list_response_schema import ApplicationListResponseSchema
# TODO update the JSON string below
json = "{}"
# create an instance of ApplicationListResponseSchema from a JSON string
application_list_response_schema_instance = ApplicationListResponseSchema.from_json(json)
# print the JSON string representation of the object
print(ApplicationListResponseSchema.to_json())
# convert the object into a dict
application_list_response_schema_dict = application_list_response_schema_instance.to_dict()
# create an instance of ApplicationListResponseSchema from a dict
application_list_response_schema_from_dict = ApplicationListResponseSchema.from_dict(application_list_response_schema_dict)