Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1006 Bytes

EnumField.md

File metadata and controls

32 lines (23 loc) · 1006 Bytes

EnumField

Properties

Name Type Description Notes
name str [optional]
value int [optional]
display_name LocalizedText [optional]
description LocalizedText [optional]

Example

from opcua_webapi.models.enum_field import EnumField

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

# convert the object into a dict
enum_field_dict = enum_field_instance.to_dict()
# create an instance of EnumField from a dict
enum_field_from_dict = EnumField.from_dict(enum_field_dict)

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