| Name | Type | Description | Notes |
|---|---|---|---|
| execution_context | object | [optional] | |
| properties | List[DwhQueryPropertyTypes] | ||
| filter_by | List[FilterBy] | [optional] | |
| having | List[Having1] | [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_request1 import DwhQueryRequest1
# TODO update the JSON string below
json = "{}"
# create an instance of DwhQueryRequest1 from a JSON string
dwh_query_request1_instance = DwhQueryRequest1.from_json(json)
# print the JSON string representation of the object
print(DwhQueryRequest1.to_json())
# convert the object into a dict
dwh_query_request1_dict = dwh_query_request1_instance.to_dict()
# create an instance of DwhQueryRequest1 from a dict
dwh_query_request1_from_dict = DwhQueryRequest1.from_dict(dwh_query_request1_dict)