Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1018 Bytes

File metadata and controls

29 lines (20 loc) · 1018 Bytes

HTTPValidationError1

Properties

Name Type Description Notes
detail List[ValidationError2] [optional]

Example

from wordlift_client.models.http_validation_error1 import HTTPValidationError1

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

# convert the object into a dict
http_validation_error1_dict = http_validation_error1_instance.to_dict()
# create an instance of HTTPValidationError1 from a dict
http_validation_error1_from_dict = HTTPValidationError1.from_dict(http_validation_error1_dict)

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