Skip to content

Latest commit

 

History

History
42 lines (33 loc) · 1.47 KB

File metadata and controls

42 lines (33 loc) · 1.47 KB

SavedQueryVersionInfo

Single saved query version

Properties

Name Type Description Notes
category object [optional]
created_at datetime
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]
num_tables object [optional]
sql str
sql_hash str
table_size object [optional]
version int

Example

from hotdata.models.saved_query_version_info import SavedQueryVersionInfo

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

# convert the object into a dict
saved_query_version_info_dict = saved_query_version_info_instance.to_dict()
# create an instance of SavedQueryVersionInfo from a dict
saved_query_version_info_from_dict = SavedQueryVersionInfo.from_dict(saved_query_version_info_dict)

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