EnumDescription
August 30, 2025 ยท View on GitHub
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| enum_definition | EnumDefinition | [optional] | |
| built_in_type | int | [optional] [default to 0] | |
| data_type_id | str | [optional] | |
| name | str | [optional] |
Example
from opcua_webapi.models.enum_description import EnumDescription
# TODO update the JSON string below
json = "{}"
# create an instance of EnumDescription from a JSON string
enum_description_instance = EnumDescription.from_json(json)
# print the JSON string representation of the object
print(EnumDescription.to_json())
# convert the object into a dict
enum_description_dict = enum_description_instance.to_dict()
# create an instance of EnumDescription from a dict
enum_description_from_dict = EnumDescription.from_dict(enum_description_dict)