Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.38 KB

File metadata and controls

36 lines (27 loc) · 1.38 KB

DwhQueryRequest

Properties

Name Type Description Notes
execution_context object [optional]
properties List[DwhQueryPropertyTypes]
filter_by List[FilterBy] [optional]
having List[Having] [optional]
result_set_filter List[ResultSetFilter] [optional]
order_by List[OrderBy] [optional]
variables List[VariableValue] [optional]
limit int [optional]

Example

from cm_python_openapi_sdk.models.dwh_query_request import DwhQueryRequest

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

# convert the object into a dict
dwh_query_request_dict = dwh_query_request_instance.to_dict()
# create an instance of DwhQueryRequest from a dict
dwh_query_request_from_dict = DwhQueryRequest.from_dict(dwh_query_request_dict)

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