Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 1.06 KB

File metadata and controls

29 lines (21 loc) · 1.06 KB

KeyValuePairBooleanString

Properties

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

Example

from docspace_api_sdk.models.key_value_pair_boolean_string import KeyValuePairBooleanString

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

# convert the object into a dict
key_value_pair_boolean_string_dict = key_value_pair_boolean_string_instance.to_dict()
# create an instance of KeyValuePairBooleanString from a dict
key_value_pair_boolean_string_from_dict = KeyValuePairBooleanString.from_dict(key_value_pair_boolean_string_dict)

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