Name | Type | Description | Notes |
---|---|---|---|
errors | ValidationErrorResponseErrors | [optional] | |
message | str | [optional] |
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)