Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 1.11 KB

File metadata and controls

29 lines (21 loc) · 1.11 KB

ItemKeyValuePairStringString

Properties

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

Example

from docspace_api_sdk.models.item_key_value_pair_string_string import ItemKeyValuePairStringString

# TODO update the JSON string below
json = "{}"
# create an instance of ItemKeyValuePairStringString from a JSON string
item_key_value_pair_string_string_instance = ItemKeyValuePairStringString.from_json(json)
# print the JSON string representation of the object
print(ItemKeyValuePairStringString.to_json())

# convert the object into a dict
item_key_value_pair_string_string_dict = item_key_value_pair_string_string_instance.to_dict()
# create an instance of ItemKeyValuePairStringString from a dict
item_key_value_pair_string_string_from_dict = ItemKeyValuePairStringString.from_dict(item_key_value_pair_string_string_dict)

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