Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.1 KB

File metadata and controls

29 lines (20 loc) · 1.1 KB

PropertyConfigsResponse

Properties

Name Type Description Notes
configs Dict[str, ConfigsResponse] Map of document kind to fiscal document configuration [optional]

Example

from cloudbeds_fiscal_document.models.property_configs_response import PropertyConfigsResponse

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

# convert the object into a dict
property_configs_response_dict = property_configs_response_instance.to_dict()
# create an instance of PropertyConfigsResponse from a dict
property_configs_response_from_dict = PropertyConfigsResponse.from_dict(property_configs_response_dict)

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