Skip to content

Latest commit

History

History
33 lines (24 loc) · 1.32 KB

File metadata and controls

33 lines (24 loc) · 1.32 KB

CreateFunctionDataType

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_function_data_typeimportCreateFunctionDataType# TODO update the JSON string belowjson="{}"# create an instance of CreateFunctionDataType from a JSON stringcreate_function_data_type_instance=CreateFunctionDataType.from_json(json)
# print the JSON string representation of the objectprint(CreateFunctionDataType.to_json())
# convert the object into a dictcreate_function_data_type_dict=create_function_data_type_instance.to_dict()
# create an instance of CreateFunctionDataType from a dictcreate_function_data_type_from_dict=CreateFunctionDataType.from_dict(create_function_data_type_dict)

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