Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 872 Bytes

File metadata and controls

31 lines (22 loc) · 872 Bytes

Metadata

A key/value metadata.

Properties

Name Type Description Notes
key str The metadata key.
value str The metadata value.

Example

from kowabunga.models.metadata import Metadata

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

# convert the object into a dict
metadata_dict = metadata_instance.to_dict()
# create an instance of Metadata from a dict
metadata_from_dict = Metadata.from_dict(metadata_dict)

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