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

NameTypeDescriptionNotes
addressint
first_bytesstr

Example

fromrevengai.models.entrypoint_modelimportEntrypointModel# TODO update the JSON string belowjson="{}"# create an instance of EntrypointModel from a JSON stringentrypoint_model_instance=EntrypointModel.from_json(json)
# print the JSON string representation of the objectprint(EntrypointModel.to_json())
# convert the object into a dictentrypoint_model_dict=entrypoint_model_instance.to_dict()
# create an instance of EntrypointModel from a dictentrypoint_model_from_dict=EntrypointModel.from_dict(entrypoint_model_dict)

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