| 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] |
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)