Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.02 KB

EnumValueType.md

File metadata and controls

31 lines (22 loc) · 1.02 KB

EnumValueType

Properties

Name Type Description Notes
value int [optional] [default to 0]
display_name LocalizedText [optional]
description LocalizedText [optional]

Example

from opcua_webapi.models.enum_value_type import EnumValueType

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

# convert the object into a dict
enum_value_type_dict = enum_value_type_instance.to_dict()
# create an instance of EnumValueType from a dict
enum_value_type_from_dict = EnumValueType.from_dict(enum_value_type_dict)

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