Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 890 Bytes

File metadata and controls

30 lines (21 loc) · 890 Bytes

MutexEntry

Properties

Name Type Description Notes
events List[ReportEvent] [optional]
name str

Example

from revengai.models.mutex_entry import MutexEntry

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

# convert the object into a dict
mutex_entry_dict = mutex_entry_instance.to_dict()
# create an instance of MutexEntry from a dict
mutex_entry_from_dict = MutexEntry.from_dict(mutex_entry_dict)

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