Skip to content

Latest commit

History

History
34 lines (25 loc) · 1.38 KB

File metadata and controls

34 lines (25 loc) · 1.38 KB

CreateDataTypeEntry

A data type to create. kind selects the variant and so which definition the type must carry.

Properties

NameTypeDescriptionNotes
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.create_data_type_entryimportCreateDataTypeEntry# TODO update the JSON string belowjson="{}"# create an instance of CreateDataTypeEntry from a JSON stringcreate_data_type_entry_instance=CreateDataTypeEntry.from_json(json)
# print the JSON string representation of the objectprint(CreateDataTypeEntry.to_json())
# convert the object into a dictcreate_data_type_entry_dict=create_data_type_entry_instance.to_dict()
# create an instance of CreateDataTypeEntry from a dictcreate_data_type_entry_from_dict=CreateDataTypeEntry.from_dict(create_data_type_entry_dict)

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