Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.06 KB

ValidationErrorsResponse.md

File metadata and controls

29 lines (20 loc) · 1.06 KB

ValidationErrorsResponse

Properties

Name Type Description Notes
errors List[ValidationError] List of errors [optional]

Example

from formkiq_client.models.validation_errors_response import ValidationErrorsResponse

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

# convert the object into a dict
validation_errors_response_dict = validation_errors_response_instance.to_dict()
# create an instance of ValidationErrorsResponse from a dict
validation_errors_response_from_dict = ValidationErrorsResponse.from_dict(validation_errors_response_dict)

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