Skip to content

Latest commit

 

History

History
31 lines (24 loc) · 1.63 KB

NotFoundError.md

File metadata and controls

31 lines (24 loc) · 1.63 KB

NotFoundError

Properties

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

Example

from affinidi_tdk_iota_client.models.not_found_error import NotFoundError

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

# convert the object into a dict
not_found_error_dict = not_found_error_instance.to_dict()
# create an instance of NotFoundError from a dict
not_found_error_from_dict = NotFoundError.from_dict(not_found_error_dict)

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