Name | Type | Description | Notes |
---|---|---|---|
message | str | [optional] | |
errors | List[ValidationError] | [optional] |
from clientapi_billingo.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_from_dict = ValidationErrorResponse.from_dict(validation_error_response_dict)