Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1000 Bytes

File metadata and controls

29 lines (20 loc) · 1000 Bytes

SettingPatchRequest

Properties

Name Type Description Notes
settings SettingValues [optional]

Example

from cloudbeds_accounting.models.setting_patch_request import SettingPatchRequest

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

# convert the object into a dict
setting_patch_request_dict = setting_patch_request_instance.to_dict()
# create an instance of SettingPatchRequest from a dict
setting_patch_request_from_dict = SettingPatchRequest.from_dict(setting_patch_request_dict)

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