Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 1.13 KB

KeyValuePairOfStringToString.md

File metadata and controls

29 lines (21 loc) · 1.13 KB

KeyValuePairOfStringToString

Properties

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

Example

from finbourne_access.models.key_value_pair_of_string_to_string import KeyValuePairOfStringToString

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

# convert the object into a dict
key_value_pair_of_string_to_string_dict = key_value_pair_of_string_to_string_instance.to_dict()
# create an instance of KeyValuePairOfStringToString from a dict
key_value_pair_of_string_to_string_form_dict = key_value_pair_of_string_to_string.from_dict(key_value_pair_of_string_to_string_dict)

Back to Model listBack to API listBack to README