Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 993 Bytes

File metadata and controls

31 lines (22 loc) · 993 Bytes

BinaryConfig

Properties

Name Type Description Notes
isa ISA [optional]
platform Platform [optional]
file_format FileFormat [optional]

Example

from revengai.models.binary_config import BinaryConfig

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

# convert the object into a dict
binary_config_dict = binary_config_instance.to_dict()
# create an instance of BinaryConfig from a dict
binary_config_from_dict = BinaryConfig.from_dict(binary_config_dict)

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