Skip to content

Latest commit

History

History
35 lines (26 loc) · 1.54 KB

File metadata and controls

35 lines (26 loc) · 1.54 KB

UpdateDataTypeEntry

A replacement for the data type named by data_type_id. kind selects the variant and so which definition the type must carry; changing it is allowed.

Properties

NameTypeDescriptionNotes
data_type_idintThe type to replace, as returned by the data types list for this analysis.
definitionFunctionTypeDefinition
kindstr
namestrType name. Unique within the analysis for a given namespace and kind.
namespacestrThe scope qualifying the type name. Omit for a type of the binary's own.[optional]
sizeintSize in bytes. Omit when it is not known.[optional]

Example

fromrevengai.models.update_data_type_entryimportUpdateDataTypeEntry# TODO update the JSON string belowjson="{}"# create an instance of UpdateDataTypeEntry from a JSON stringupdate_data_type_entry_instance=UpdateDataTypeEntry.from_json(json)
# print the JSON string representation of the objectprint(UpdateDataTypeEntry.to_json())
# convert the object into a dictupdate_data_type_entry_dict=update_data_type_entry_instance.to_dict()
# create an instance of UpdateDataTypeEntry from a dictupdate_data_type_entry_from_dict=UpdateDataTypeEntry.from_dict(update_data_type_entry_dict)

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