Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.51 KB

CommonSchemaUnprocessableContentResponseSchema.md

File metadata and controls

31 lines (22 loc) · 1.51 KB

CommonSchemaUnprocessableContentResponseSchema

Properties

Name Type Description Notes
message str Validation error message [optional]
errors CommonSchemaUnprocessableContentResponseSchemaErrors [optional]
correlation_id str [optional]

Example

from hostinger_api.models.common_schema_unprocessable_content_response_schema import CommonSchemaUnprocessableContentResponseSchema

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

# convert the object into a dict
common_schema_unprocessable_content_response_schema_dict = common_schema_unprocessable_content_response_schema_instance.to_dict()
# create an instance of CommonSchemaUnprocessableContentResponseSchema from a dict
common_schema_unprocessable_content_response_schema_from_dict = CommonSchemaUnprocessableContentResponseSchema.from_dict(common_schema_unprocessable_content_response_schema_dict)

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