Skip to content

Latest commit

 

History

History
40 lines (31 loc) · 1.6 KB

File metadata and controls

40 lines (31 loc) · 1.6 KB

DataRetrieverQuery

Properties

Name Type Description Notes
measures List[str] [optional]
dimensions List[str] [optional]
filters List[QueryFilters] [optional]
time_dimensions List[OnelensModelsServiceInterfacesUtilitiesDataRetrieverServiceTimeDimension] [optional]
segments List[str] [optional]
limit int [optional]
total bool [optional]
offset int [optional]
order List[QueryOrder] [optional]
timezone str [optional]
renew_query bool [optional]
ungrouped bool [optional]

Example

from onelens_backend_client.models.data_retriever_query import DataRetrieverQuery

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

# convert the object into a dict
data_retriever_query_dict = data_retriever_query_instance.to_dict()
# create an instance of DataRetrieverQuery from a dict
data_retriever_query_form_dict = data_retriever_query.from_dict(data_retriever_query_dict)

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