Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.34 KB

File metadata and controls

33 lines (24 loc) · 1.34 KB

UpdateUnknownDataType

Properties

Name Type Description Notes
data_type_id int The type to replace, as returned by the data types list for this analysis.
kind str
name str Type name. Unique within the analysis for a given namespace and kind.
namespace str The scope qualifying the type name. Omit for a type of the binary's own. [optional]
size int Size in bytes. Omit when it is not known. [optional]

Example

from revengai.models.update_unknown_data_type import UpdateUnknownDataType

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

# convert the object into a dict
update_unknown_data_type_dict = update_unknown_data_type_instance.to_dict()
# create an instance of UpdateUnknownDataType from a dict
update_unknown_data_type_from_dict = UpdateUnknownDataType.from_dict(update_unknown_data_type_dict)

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