| Name | Type | Description | Notes |
|---|---|---|---|
| key | str | ||
| value | str |
from ibm_gdsc_sdk_saas.models.string_key_value import StringKeyValue
# TODO update the JSON string below
json = "{}"
# create an instance of StringKeyValue from a JSON string
string_key_value_instance = StringKeyValue.from_json(json)
# print the JSON string representation of the object
print(StringKeyValue.to_json())
# convert the object into a dict
string_key_value_dict = string_key_value_instance.to_dict()
# create an instance of StringKeyValue from a dict
string_key_value_from_dict = StringKeyValue.from_dict(string_key_value_dict)