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

ItemKeyValuePairObjectObject

Properties

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

Example

from docspace_api_sdk.models.item_key_value_pair_object_object import ItemKeyValuePairObjectObject

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

# convert the object into a dict
item_key_value_pair_object_object_dict = item_key_value_pair_object_object_instance.to_dict()
# create an instance of ItemKeyValuePairObjectObject from a dict
item_key_value_pair_object_object_from_dict = ItemKeyValuePairObjectObject.from_dict(item_key_value_pair_object_object_dict)

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