Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.16 KB

File metadata and controls

32 lines (23 loc) · 1.16 KB

DatasetSourceOneOf2

Properties

Name Type Description Notes
description str Optional description for the auto-created saved query. [optional]
name str Optional name for the auto-created saved query. Defaults to the dataset label. [optional]
sql str
type str

Example

from hotdata.models.dataset_source_one_of2 import DatasetSourceOneOf2

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

# convert the object into a dict
dataset_source_one_of2_dict = dataset_source_one_of2_instance.to_dict()
# create an instance of DatasetSourceOneOf2 from a dict
dataset_source_one_of2_from_dict = DatasetSourceOneOf2.from_dict(dataset_source_one_of2_dict)

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