Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 968 Bytes

MetaData.md

File metadata and controls

30 lines (22 loc) · 968 Bytes

MetaData

Key/value pair that will be returned to you in the API call response.

Properties

Name Type Description Notes
key str key of the key/value pair [optional]
value str value of the key/value pair [optional]

Example

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)

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