Returns an HTTP status code and message for a 'bad request'
Name | Type | Description | Notes |
---|---|---|---|
error | str | The three-digit HTTP error code for the bad request | [optional] |
message | str | A message explaining the bad request | [optional] |
from Avalara.SDK.models.EInvoicing.V1.bad_request import BadRequest
# TODO update the JSON string below
json = "{}"
# create an instance of BadRequest from a JSON string
bad_request_instance = BadRequest.from_json(json)
# print the JSON string representation of the object
print(BadRequest.to_json())
# convert the object into a dict
bad_request_dict = bad_request_instance.to_dict()
# create an instance of BadRequest from a dict
bad_request_from_dict = BadRequest.from_dict(bad_request_dict)