Name | Type | Description | Notes |
---|---|---|---|
key | str | [optional] | |
value | Variant | [optional] |
from opcua_webapi.models.key_value_pair import KeyValuePair
# TODO update the JSON string below
json = "{}"
# create an instance of KeyValuePair from a JSON string
key_value_pair_instance = KeyValuePair.from_json(json)
# print the JSON string representation of the object
print(KeyValuePair.to_json())
# convert the object into a dict
key_value_pair_dict = key_value_pair_instance.to_dict()
# create an instance of KeyValuePair from a dict
key_value_pair_from_dict = KeyValuePair.from_dict(key_value_pair_dict)