Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.12 KB

File metadata and controls

33 lines (24 loc) · 1.12 KB

CreateSavedQueryRequest

Request body for POST /v1/queries

Properties

Name Type Description Notes
description str [optional]
name str
sql str
tags List[str] [optional]

Example

from hotdata.models.create_saved_query_request import CreateSavedQueryRequest

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

# convert the object into a dict
create_saved_query_request_dict = create_saved_query_request_instance.to_dict()
# create an instance of CreateSavedQueryRequest from a dict
create_saved_query_request_from_dict = CreateSavedQueryRequest.from_dict(create_saved_query_request_dict)

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