Name | Type | Description | Notes |
---|---|---|---|
ua_type | int | [optional] | |
body | object | [optional] | |
dimensions | List[int] | [optional] |
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)