Skip to content

Latest commit

History

History
29 lines (20 loc) · 988 Bytes

File metadata and controls

29 lines (20 loc) · 988 Bytes

StructDefinition

Properties

NameTypeDescriptionNotes
membersList[DataTypeMemberEntry]The type's fields, in offset order.

Example

fromrevengai.models.struct_definitionimportStructDefinition# TODO update the JSON string belowjson="{}"# create an instance of StructDefinition from a JSON stringstruct_definition_instance=StructDefinition.from_json(json)
# print the JSON string representation of the objectprint(StructDefinition.to_json())
# convert the object into a dictstruct_definition_dict=struct_definition_instance.to_dict()
# create an instance of StructDefinition from a dictstruct_definition_from_dict=StructDefinition.from_dict(struct_definition_dict)

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