Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 981 Bytes

ValidationErrorLocInner.md

File metadata and controls

28 lines (19 loc) · 981 Bytes

ValidationErrorLocInner

Properties

Name Type Description Notes

Example

from sec_agent_sdk.models.validation_error_loc_inner import ValidationErrorLocInner

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

# convert the object into a dict
validation_error_loc_inner_dict = validation_error_loc_inner_instance.to_dict()
# create an instance of ValidationErrorLocInner from a dict
validation_error_loc_inner_from_dict = ValidationErrorLocInner.from_dict(validation_error_loc_inner_dict)

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