Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.14 KB

File metadata and controls

31 lines (22 loc) · 1.14 KB

DwhDateRangeRequest

Properties

Name Type Description Notes
execution_context ExecutionContext [optional]
var_from str defines the date property in a fact table
filter DwhDateRangeFilter [optional]

Example

from cm_python_openapi_sdk.models.dwh_date_range_request import DwhDateRangeRequest

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

# convert the object into a dict
dwh_date_range_request_dict = dwh_date_range_request_instance.to_dict()
# create an instance of DwhDateRangeRequest from a dict
dwh_date_range_request_from_dict = DwhDateRangeRequest.from_dict(dwh_date_range_request_dict)

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