Name | Type | Description | Notes |
---|---|---|---|
id | int | ||
backend_id | int | ||
created_on | datetime | ||
data | object |
from compute_api_client.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_form_dict = metadata.from_dict(metadata_dict)