| Name | Type | Description | Notes |
|---|
| data_type_id | int | The type to replace, as returned by the data types list for this analysis. | |
| 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.update_bitfield_data_typeimportUpdateBitfieldDataType# TODO update the JSON string belowjson="{}"# create an instance of UpdateBitfieldDataType from a JSON stringupdate_bitfield_data_type_instance=UpdateBitfieldDataType.from_json(json)
# print the JSON string representation of the objectprint(UpdateBitfieldDataType.to_json())
# convert the object into a dictupdate_bitfield_data_type_dict=update_bitfield_data_type_instance.to_dict()
# create an instance of UpdateBitfieldDataType from a dictupdate_bitfield_data_type_from_dict=UpdateBitfieldDataType.from_dict(update_bitfield_data_type_dict)[Back to Model list][Back to API list][Back to README]