You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fromcloudbeds_pms.models.allotment_block_release_response_schemaimportAllotmentBlockReleaseResponseSchema# TODO update the JSON string belowjson="{}"# create an instance of AllotmentBlockReleaseResponseSchema from a JSON stringallotment_block_release_response_schema_instance=AllotmentBlockReleaseResponseSchema.from_json(json)
# print the JSON string representation of the objectprint(AllotmentBlockReleaseResponseSchema.to_json())
# convert the object into a dictallotment_block_release_response_schema_dict=allotment_block_release_response_schema_instance.to_dict()
# create an instance of AllotmentBlockReleaseResponseSchema from a dictallotment_block_release_response_schema_from_dict=AllotmentBlockReleaseResponseSchema.from_dict(allotment_block_release_response_schema_dict)