EnumDescription

August 30, 2025 ยท View on GitHub

Link to specification.

Properties

NameTypeDescriptionNotes
enum_definitionEnumDefinition[optional]
built_in_typeint[optional] [default to 0]
data_type_idstr[optional]
namestr[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)

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