Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.64 KB

File metadata and controls

33 lines (24 loc) · 1.64 KB

NotFoundErrorsErrorsInner

Properties

Name Type Description Notes
error_code str Error code(s) that appear due to HTTP 404 Page or File not found [optional]
error_description str The HTTP 404 Not Found response status code indicates that the server cannot find the requested resource. [optional]
additional_code str A unique identifier for the error, for example 1101055, 0100008, or 1021126. [optional]
additional_info str This is an additional information about the error. This error 'Invalid Request' might appear due to invalid dimension, weight, or serviceid, or if the information is missing. [optional]
additional_parameters List[str] [optional]

Example

from shipping.models.not_found_errors_errors_inner import NotFoundErrorsErrorsInner

# TODO update the JSON string below
json = "{}"
# create an instance of NotFoundErrorsErrorsInner from a JSON string
not_found_errors_errors_inner_instance = NotFoundErrorsErrorsInner.from_json(json)
# print the JSON string representation of the object
print(NotFoundErrorsErrorsInner.to_json())

# convert the object into a dict
not_found_errors_errors_inner_dict = not_found_errors_errors_inner_instance.to_dict()
# create an instance of NotFoundErrorsErrorsInner from a dict
not_found_errors_errors_inner_from_dict = NotFoundErrorsErrorsInner.from_dict(not_found_errors_errors_inner_dict)

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