from phrasetms_client.models.metadata_response import MetadataResponse
# TODO update the JSON string below
json = "{}"
# create an instance of MetadataResponse from a JSON string
metadata_response_instance = MetadataResponse.from_json(json)
# print the JSON string representation of the object
print MetadataResponse.to_json()
# convert the object into a dict
metadata_response_dict = metadata_response_instance.to_dict()
# create an instance of MetadataResponse from a dict
metadata_response_from_dict = MetadataResponse.from_dict(metadata_response_dict)