Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.05 KB

File metadata and controls

31 lines (22 loc) · 1.05 KB

ActiveDateFilterDTO

Properties

Name Type Description Notes
default_values DefaultValuesDateDTO
type str
var_property str

Example

from cm_python_openapi_sdk.models.active_date_filter_dto import ActiveDateFilterDTO

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

# convert the object into a dict
active_date_filter_dto_dict = active_date_filter_dto_instance.to_dict()
# create an instance of ActiveDateFilterDTO from a dict
active_date_filter_dto_from_dict = ActiveDateFilterDTO.from_dict(active_date_filter_dto_dict)

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