Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 995 Bytes

File metadata and controls

31 lines (22 loc) · 995 Bytes

AttemptStartedEvent

Properties

Name Type Description Notes
attempt int
seq int
type str

Example

from revengai.models.attempt_started_event import AttemptStartedEvent

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

# convert the object into a dict
attempt_started_event_dict = attempt_started_event_instance.to_dict()
# create an instance of AttemptStartedEvent from a dict
attempt_started_event_from_dict = AttemptStartedEvent.from_dict(attempt_started_event_dict)

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