Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 880 Bytes

Variant.md

File metadata and controls

31 lines (22 loc) · 880 Bytes

Variant

Properties

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