Key/value pair that will be returned to you in the API call response.
Name | Type | Description | Notes |
---|---|---|---|
key | str | key of the key/value pair | [optional] |
value | str | value of the key/value pair | [optional] |
from openapi_client.models.meta_data import MetaData
# TODO update the JSON string below
json = "{}"
# create an instance of MetaData from a JSON string
meta_data_instance = MetaData.from_json(json)
# print the JSON string representation of the object
print MetaData.to_json()
# convert the object into a dict
meta_data_dict = meta_data_instance.to_dict()
# create an instance of MetaData from a dict
meta_data_form_dict = meta_data.from_dict(meta_data_dict)