Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 921 Bytes

KeyValuePair.md

File metadata and controls

30 lines (21 loc) · 921 Bytes

KeyValuePair

Properties

Name Type Description Notes
key str [optional]
value Variant [optional]

Example

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)

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