Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 953 Bytes

File metadata and controls

29 lines (20 loc) · 953 Bytes

EnumDefinition

Properties

Name Type Description Notes
values List[DataTypeEnumValueEntry] The type's constants.

Example

from revengai.models.enum_definition import EnumDefinition

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

# convert the object into a dict
enum_definition_dict = enum_definition_instance.to_dict()
# create an instance of EnumDefinition from a dict
enum_definition_from_dict = EnumDefinition.from_dict(enum_definition_dict)

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