Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.01 KB

BadRequest.md

File metadata and controls

31 lines (22 loc) · 1.01 KB

BadRequest

Returns an HTTP status code and message for a 'bad request'

Properties

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]

Example

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)

[Back to Model list] [Back to API list] [Back to README]