Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1010 Bytes

File metadata and controls

32 lines (23 loc) · 1010 Bytes

NamesFinishedEvent

Properties

Name Type Description Notes
applied int
attempt int
seq int
type str

Example

from revengai.models.names_finished_event import NamesFinishedEvent

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

# convert the object into a dict
names_finished_event_dict = names_finished_event_instance.to_dict()
# create an instance of NamesFinishedEvent from a dict
names_finished_event_from_dict = NamesFinishedEvent.from_dict(names_finished_event_dict)

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