Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.09 KB

ValidationErrorResponse.md

File metadata and controls

30 lines (21 loc) · 1.09 KB

ValidationErrorResponse

Properties

Name Type Description Notes
errors ValidationErrorResponseErrors [optional]
message str [optional]

Example

from firefly_iii_client.models.validation_error_response import ValidationErrorResponse

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

# convert the object into a dict
validation_error_response_dict = validation_error_response_instance.to_dict()
# create an instance of ValidationErrorResponse from a dict
validation_error_response_form_dict = validation_error_response.from_dict(validation_error_response_dict)

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