Name | Type | Description | Notes |
---|---|---|---|
errors | List[Error] | [optional] |
from clientapi_barion.models.errors import Errors
# TODO update the JSON string below
json = "{}"
# create an instance of Errors from a JSON string
errors_instance = Errors.from_json(json)
# print the JSON string representation of the object
print(Errors.to_json())
# convert the object into a dict
errors_dict = errors_instance.to_dict()
# create an instance of Errors from a dict
errors_from_dict = Errors.from_dict(errors_dict)