Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.07 KB

File metadata and controls

36 lines (27 loc) · 1.07 KB

FailureResponse

Properties

Name Type Description Notes
id str
run_id str
account_id str
account_url str
timestamp datetime
url str
handler_name str
message str

Example

from wordlift_client.models.failure_response import FailureResponse

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

# convert the object into a dict
failure_response_dict = failure_response_instance.to_dict()
# create an instance of FailureResponse from a dict
failure_response_from_dict = FailureResponse.from_dict(failure_response_dict)

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