| Name | Type | Description | Notes |
|---|---|---|---|
| address | int | ||
| first_bytes | str |
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)