Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.04 KB

File metadata and controls

33 lines (24 loc) · 1.04 KB

ValidationError2

Properties

Name Type Description Notes
loc List[LocationInner]
msg str
type str
input object [optional]
ctx object [optional]

Example

from wordlift_client.models.validation_error2 import ValidationError2

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

# convert the object into a dict
validation_error2_dict = validation_error2_instance.to_dict()
# create an instance of ValidationError2 from a dict
validation_error2_from_dict = ValidationError2.from_dict(validation_error2_dict)

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