| Name | Type | Description | Notes |
|---|---|---|---|
| data | List[AllotmentBlockReleaseResponseSchema] |
from cloudbeds_pms.models.allotment_block_release_bulk_response_schema import AllotmentBlockReleaseBulkResponseSchema
# TODO update the JSON string below
json = "{}"
# create an instance of AllotmentBlockReleaseBulkResponseSchema from a JSON string
allotment_block_release_bulk_response_schema_instance = AllotmentBlockReleaseBulkResponseSchema.from_json(json)
# print the JSON string representation of the object
print(AllotmentBlockReleaseBulkResponseSchema.to_json())
# convert the object into a dict
allotment_block_release_bulk_response_schema_dict = allotment_block_release_bulk_response_schema_instance.to_dict()
# create an instance of AllotmentBlockReleaseBulkResponseSchema from a dict
allotment_block_release_bulk_response_schema_from_dict = AllotmentBlockReleaseBulkResponseSchema.from_dict(allotment_block_release_bulk_response_schema_dict)