Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.22 KB

AttemptResponse.md

File metadata and controls

32 lines (23 loc) · 1.22 KB

AttemptResponse

An Attempt object

Properties

Name Type Description Notes
dt_attempt_start str Represent a Date Time. The timezone is the one configured in the User's profile.
s_attempt_result str The Success or Failure message of the attempt when we tried to call the URL to deliver the webhook event.
i_attempt_duration int The number of second it took to process the webhook or get an error

Example

from eZmaxApi.models.attempt_response import AttemptResponse

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

# convert the object into a dict
attempt_response_dict = attempt_response_instance.to_dict()
# create an instance of AttemptResponse from a dict
attempt_response_form_dict = attempt_response.from_dict(attempt_response_dict)

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