| Name | Type | Description | Notes |
|---|
| analysis_id | int | Analysis ID | |
| analysis_scope | str | Scope of the analysis (always PUBLIC for examples) | |
| binary_id | int | Binary ID | |
| binary_name | str | Binary filename | |
| binary_size | int | Binary size in bytes | |
| creation | datetime | When the analysis was created | |
| is_owner | bool | True when the caller owns the analysis | |
| model_id | int | Model ID | |
| sha_256_hash | str | SHA-256 hash of the binary | |
| status | str | Analysis status | |
| tags | List[str] | Tags associated with this binary | |
| username | str | Username of the analysis owner | |
fromrevengai.models.exampleimportExample# TODO update the JSON string belowjson="{}"# create an instance of Example from a JSON stringexample_instance=Example.from_json(json)
# print the JSON string representation of the objectprint(Example.to_json())
# convert the object into a dictexample_dict=example_instance.to_dict()
# create an instance of Example from a dictexample_from_dict=Example.from_dict(example_dict)[Back to Model list][Back to API list][Back to README]