Variant

August 30, 2025 ยท View on GitHub

Link to specification.

Properties

NameTypeDescriptionNotes
ua_typeint[optional]
valueobject[optional]
dimensionsList[int][optional]

Example

from opcua_webapi.models.variant import Variant

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

# convert the object into a dict
variant_dict = variant_instance.to_dict()
# create an instance of Variant from a dict
variant_from_dict = Variant.from_dict(variant_dict)

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