Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 917 Bytes

EnumDefinition.md

File metadata and controls

29 lines (20 loc) · 917 Bytes

EnumDefinition

Properties

Name Type Description Notes
fields List[EnumField] [optional]

Example

from opcua_webapi.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]