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
Key of the setting to update. Must be one of the valid distribution setting keys.
value
object
Parsed setting value. Can be string, number, boolean, or structured data, depending on the setting you are updating.
Example
fromcloudbeds_pms.models.patch_distribution_settings_request_schema_settings_innerimportPatchDistributionSettingsRequestSchemaSettingsInner# TODO update the JSON string belowjson="{}"# create an instance of PatchDistributionSettingsRequestSchemaSettingsInner from a JSON stringpatch_distribution_settings_request_schema_settings_inner_instance=PatchDistributionSettingsRequestSchemaSettingsInner.from_json(json)
# print the JSON string representation of the objectprint(PatchDistributionSettingsRequestSchemaSettingsInner.to_json())
# convert the object into a dictpatch_distribution_settings_request_schema_settings_inner_dict=patch_distribution_settings_request_schema_settings_inner_instance.to_dict()
# create an instance of PatchDistributionSettingsRequestSchemaSettingsInner from a dictpatch_distribution_settings_request_schema_settings_inner_from_dict=PatchDistributionSettingsRequestSchemaSettingsInner.from_dict(patch_distribution_settings_request_schema_settings_inner_dict)