Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 942 Bytes

File metadata and controls

29 lines (20 loc) · 942 Bytes

SettingResponse

Properties

Name Type Description Notes
settings SettingValues [optional]

Example

from cloudbeds_accounting.models.setting_response import SettingResponse

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

# convert the object into a dict
setting_response_dict = setting_response_instance.to_dict()
# create an instance of SettingResponse from a dict
setting_response_from_dict = SettingResponse.from_dict(setting_response_dict)

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