Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.28 KB

File metadata and controls

29 lines (20 loc) · 1.28 KB

AllotmentBlockReleaseListResponseSchema

Properties

Name Type Description Notes
data List[AllotmentBlockReleaseResponseSchema]

Example

from cloudbeds_pms.models.allotment_block_release_list_response_schema import AllotmentBlockReleaseListResponseSchema

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

# convert the object into a dict
allotment_block_release_list_response_schema_dict = allotment_block_release_list_response_schema_instance.to_dict()
# create an instance of AllotmentBlockReleaseListResponseSchema from a dict
allotment_block_release_list_response_schema_from_dict = AllotmentBlockReleaseListResponseSchema.from_dict(allotment_block_release_list_response_schema_dict)

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