Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 1.12 KB

File metadata and controls

29 lines (21 loc) · 1.12 KB

ItemKeyValuePairStringBoolean

Properties

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

Example

from docspace_api_sdk.models.item_key_value_pair_string_boolean import ItemKeyValuePairStringBoolean

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

# convert the object into a dict
item_key_value_pair_string_boolean_dict = item_key_value_pair_string_boolean_instance.to_dict()
# create an instance of ItemKeyValuePairStringBoolean from a dict
item_key_value_pair_string_boolean_from_dict = ItemKeyValuePairStringBoolean.from_dict(item_key_value_pair_string_boolean_dict)

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