Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 920 Bytes

File metadata and controls

30 lines (21 loc) · 920 Bytes

EntrypointModel

Properties

Name Type Description Notes
address int
first_bytes str

Example

from revengai.models.entrypoint_model import EntrypointModel

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

# convert the object into a dict
entrypoint_model_dict = entrypoint_model_instance.to_dict()
# create an instance of EntrypointModel from a dict
entrypoint_model_from_dict = EntrypointModel.from_dict(entrypoint_model_dict)

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