Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.08 KB

File metadata and controls

32 lines (23 loc) · 1.08 KB

FunctionInterval

Properties

Name Type Description Notes
id str [optional]
type str
content List[DwhQueryNumberType]
options FunctionDateTruncateOptions

Example

from cm_python_openapi_sdk.models.function_interval import FunctionInterval

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

# convert the object into a dict
function_interval_dict = function_interval_instance.to_dict()
# create an instance of FunctionInterval from a dict
function_interval_from_dict = FunctionInterval.from_dict(function_interval_dict)

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