Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.12 KB

File metadata and controls

33 lines (24 loc) · 1.12 KB

FailureCreate

Properties

Name Type Description Notes
id str UUID v7 generated by the client.
timestamp datetime Wall-clock time when the failure occurred.
url str URL that failed.
handler_name str Name of the URL handler that raised the exception.
message str Exception message.

Example

from wordlift_client.models.failure_create import FailureCreate

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

# convert the object into a dict
failure_create_dict = failure_create_instance.to_dict()
# create an instance of FailureCreate from a dict
failure_create_from_dict = FailureCreate.from_dict(failure_create_dict)

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