Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 991 Bytes

File metadata and controls

29 lines (20 loc) · 991 Bytes

UnionDefinition

Properties

Name Type Description Notes
members List[DataTypeMemberEntry] The type's fields. Every member starts at offset 0.

Example

from revengai.models.union_definition import UnionDefinition

# TODO update the JSON string below
json = "{}"
# create an instance of UnionDefinition from a JSON string
union_definition_instance = UnionDefinition.from_json(json)
# print the JSON string representation of the object
print(UnionDefinition.to_json())

# convert the object into a dict
union_definition_dict = union_definition_instance.to_dict()
# create an instance of UnionDefinition from a dict
union_definition_from_dict = UnionDefinition.from_dict(union_definition_dict)

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