Skip to content

Latest commit

History

History
37 lines (28 loc) · 1.59 KB

File metadata and controls

37 lines (28 loc) · 1.59 KB

BitfieldDataType

Properties

NameTypeDescriptionNotes
created_atdatetimeWhen this type was extracted.
data_type_idintIdentifies the type within its analysis. 0 is a valid id.
has_definitionboolWhether this type carries a definition. False for the kinds that never have one and for a type referenced but never defined.
kindstr
namestrType name.
namespacestrThe scope qualifying the type name. Empty for a program-defined type.
sizeintSize in bytes, absent when it could not be determined.[optional]
source_function_idintThe function this type was copied from, when transferred rather than extracted.[optional]
source_typestrWhere this type came from.

Example

fromrevengai.models.bitfield_data_typeimportBitfieldDataType# TODO update the JSON string belowjson="{}"# create an instance of BitfieldDataType from a JSON stringbitfield_data_type_instance=BitfieldDataType.from_json(json)
# print the JSON string representation of the objectprint(BitfieldDataType.to_json())
# convert the object into a dictbitfield_data_type_dict=bitfield_data_type_instance.to_dict()
# create an instance of BitfieldDataType from a dictbitfield_data_type_from_dict=BitfieldDataType.from_dict(bitfield_data_type_dict)

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