Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.49 KB

File metadata and controls

30 lines (21 loc) · 1.49 KB

PatchDistributionSettingsErrorResponseSchema

Properties

Name Type Description Notes
message str Human-readable explanation of the error.
errors List[PatchDistributionSettingsErrorResponseSchemaErrorsInner] List of errors encountered during the update.

Example

from cloudbeds_pms.models.patch_distribution_settings_error_response_schema import PatchDistributionSettingsErrorResponseSchema

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

# convert the object into a dict
patch_distribution_settings_error_response_schema_dict = patch_distribution_settings_error_response_schema_instance.to_dict()
# create an instance of PatchDistributionSettingsErrorResponseSchema from a dict
patch_distribution_settings_error_response_schema_from_dict = PatchDistributionSettingsErrorResponseSchema.from_dict(patch_distribution_settings_error_response_schema_dict)

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