Name | Type | Description | Notes |
---|---|---|---|
error | ServerError | [optional] |
from clientapi_billingo.models.server_error_response import ServerErrorResponse
# TODO update the JSON string below
json = "{}"
# create an instance of ServerErrorResponse from a JSON string
server_error_response_instance = ServerErrorResponse.from_json(json)
# print the JSON string representation of the object
print(ServerErrorResponse.to_json())
# convert the object into a dict
server_error_response_dict = server_error_response_instance.to_dict()
# create an instance of ServerErrorResponse from a dict
server_error_response_from_dict = ServerErrorResponse.from_dict(server_error_response_dict)