| 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. |
|
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]