| Name | Type | Description | Notes |
|---|
| 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_base_data_typeimportCreateBaseDataType# TODO update the JSON string belowjson="{}"# create an instance of CreateBaseDataType from a JSON stringcreate_base_data_type_instance=CreateBaseDataType.from_json(json)
# print the JSON string representation of the objectprint(CreateBaseDataType.to_json())
# convert the object into a dictcreate_base_data_type_dict=create_base_data_type_instance.to_dict()
# create an instance of CreateBaseDataType from a dictcreate_base_data_type_from_dict=CreateBaseDataType.from_dict(create_base_data_type_dict)[Back to Model list][Back to API list][Back to README]