Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.12 KB

File metadata and controls

31 lines (22 loc) · 1.12 KB

ValidationError1DetailInner

Properties

Name Type Description Notes
loc List[str] [optional]
msg str [optional]
type str [optional]

Example

from wordlift_client.models.validation_error1_detail_inner import ValidationError1DetailInner

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

# convert the object into a dict
validation_error1_detail_inner_dict = validation_error1_detail_inner_instance.to_dict()
# create an instance of ValidationError1DetailInner from a dict
validation_error1_detail_inner_from_dict = ValidationError1DetailInner.from_dict(validation_error1_detail_inner_dict)

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