Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 969 Bytes

File metadata and controls

29 lines (20 loc) · 969 Bytes

CreateFolioResponse

Properties

Name Type Description Notes
id int Created folio ID

Example

from cloudbeds_accounting.models.create_folio_response import CreateFolioResponse

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

# convert the object into a dict
create_folio_response_dict = create_folio_response_instance.to_dict()
# create an instance of CreateFolioResponse from a dict
create_folio_response_from_dict = CreateFolioResponse.from_dict(create_folio_response_dict)

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