Skip to content

Latest commit

 

History

History
31 lines (24 loc) · 1.69 KB

File metadata and controls

31 lines (24 loc) · 1.69 KB

UnauthorizedError

Properties

Name Type Description Notes
name str
message str
http_status_code float
trace_id str
details List[InvalidParameterErrorDetailsInner] [optional]

Example

from affinidi_tdk_login_configuration_client.models.unauthorized_error import UnauthorizedError

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

# convert the object into a dict
unauthorized_error_dict = unauthorized_error_instance.to_dict()
# create an instance of UnauthorizedError from a dict
unauthorized_error_from_dict = UnauthorizedError.from_dict(unauthorized_error_dict)

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