| Name | Type | Description | Notes |
|---|---|---|---|
| members | List[DataTypeMemberEntry] | The type's fields, in offset order. |
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)