Skip to content

Latest commit

 

History

History
47 lines (38 loc) · 1.57 KB

File metadata and controls

47 lines (38 loc) · 1.57 KB

SavedQueryDetail

Saved query detail (includes latest version's SQL)

Properties

Name Type Description Notes
category object [optional]
created_at datetime
description str
has_aggregation object [optional]
has_group_by object [optional]
has_join object [optional]
has_limit object [optional]
has_order_by object [optional]
has_predicate object [optional]
id str
latest_version int
name str
num_tables object [optional]
sql str
sql_hash str
table_size object [optional]
tags List[str]
updated_at datetime

Example

from hotdata.models.saved_query_detail import SavedQueryDetail

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

# convert the object into a dict
saved_query_detail_dict = saved_query_detail_instance.to_dict()
# create an instance of SavedQueryDetail from a dict
saved_query_detail_from_dict = SavedQueryDetail.from_dict(saved_query_detail_dict)

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