You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
fromshipping.models.not_found_errors_errors_innerimportNotFoundErrorsErrorsInner# TODO update the JSON string belowjson="{}"# create an instance of NotFoundErrorsErrorsInner from a JSON stringnot_found_errors_errors_inner_instance=NotFoundErrorsErrorsInner.from_json(json)
# print the JSON string representation of the objectprint(NotFoundErrorsErrorsInner.to_json())
# convert the object into a dictnot_found_errors_errors_inner_dict=not_found_errors_errors_inner_instance.to_dict()
# create an instance of NotFoundErrorsErrorsInner from a dictnot_found_errors_errors_inner_from_dict=NotFoundErrorsErrorsInner.from_dict(not_found_errors_errors_inner_dict)