Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 995 Bytes

File metadata and controls

31 lines (22 loc) · 995 Bytes

DecompFinishedEvent

Properties

Name Type Description Notes
attempt int
seq int
type str

Example

from revengai.models.decomp_finished_event import DecompFinishedEvent

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

# convert the object into a dict
decomp_finished_event_dict = decomp_finished_event_instance.to_dict()
# create an instance of DecompFinishedEvent from a dict
decomp_finished_event_from_dict = DecompFinishedEvent.from_dict(decomp_finished_event_dict)

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