Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 991 Bytes

File metadata and controls

29 lines (21 loc) · 991 Bytes

QueryMetadata

An array of objects containing metadata key/value pairs that have been saved on messages.

Properties

Name Type Description Notes
var_schema MetaData [optional]

Example

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)

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