A data type to create. kind selects the variant and so which definition the type must carry.
| Name | Type | Description | Notes |
|---|---|---|---|
| definition | FunctionTypeDefinition | ||
| 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] |
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)