An array of objects containing metadata key/value pairs that have been saved on messages.
| Name | Type | Description | Notes |
|---|---|---|---|
| var_schema | MetaData | [optional] |
from openapi_client.models.query_metadata import QueryMetadata
# TODO update the JSON string below
json = "{}"
# create an instance of QueryMetadata from a JSON string
query_metadata_instance = QueryMetadata.from_json(json)
# print the JSON string representation of the object
print QueryMetadata.to_json()
# convert the object into a dict
query_metadata_dict = query_metadata_instance.to_dict()
# create an instance of QueryMetadata from a dict
query_metadata_form_dict = query_metadata.from_dict(query_metadata_dict)