Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.14 KB

File metadata and controls

32 lines (23 loc) · 1.14 KB

RelativeBinaryResponse

Properties

Name Type Description Notes
binary_id int ID of the relative binary
analysis_id int [optional]
name str Name of the relative binary
sha256 str SHA256 hash of the relative binary

Example

from revengai.models.relative_binary_response import RelativeBinaryResponse

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

# convert the object into a dict
relative_binary_response_dict = relative_binary_response_instance.to_dict()
# create an instance of RelativeBinaryResponse from a dict
relative_binary_response_from_dict = RelativeBinaryResponse.from_dict(relative_binary_response_dict)

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