Skip to content

Latest commit

History

History
35 lines (26 loc) · 1.4 KB

File metadata and controls

35 lines (26 loc) · 1.4 KB

DataTypeMemberEntry

Properties

NameTypeDescriptionNotes
bit_offsetintBit offset from the start of the containing type, for bitfields.[optional]
bit_sizeintWidth in bits, for bitfields.[optional]
data_type_idintThe member's type.[optional]
is_bitfieldboolWhether this member is a bitfield.
namestrMember name, absent for unnamed padding.[optional]
offsetintByte offset from the start of the containing type.
sizeintMember size in bytes.

Example

fromrevengai.models.data_type_member_entryimportDataTypeMemberEntry# TODO update the JSON string belowjson="{}"# create an instance of DataTypeMemberEntry from a JSON stringdata_type_member_entry_instance=DataTypeMemberEntry.from_json(json)
# print the JSON string representation of the objectprint(DataTypeMemberEntry.to_json())
# convert the object into a dictdata_type_member_entry_dict=data_type_member_entry_instance.to_dict()
# create an instance of DataTypeMemberEntry from a dictdata_type_member_entry_from_dict=DataTypeMemberEntry.from_dict(data_type_member_entry_dict)

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