Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.24 KB

File metadata and controls

32 lines (23 loc) · 1.24 KB

ActiveSingleSelectFilterDTO

Properties

Name Type Description Notes
default_values DefaultValuesSingleSelectDTO
type str
var_property str
order_by List[OrderByDTO] [optional]

Example

from cm_python_openapi_sdk.models.active_single_select_filter_dto import ActiveSingleSelectFilterDTO

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

# convert the object into a dict
active_single_select_filter_dto_dict = active_single_select_filter_dto_instance.to_dict()
# create an instance of ActiveSingleSelectFilterDTO from a dict
active_single_select_filter_dto_from_dict = ActiveSingleSelectFilterDTO.from_dict(active_single_select_filter_dto_dict)

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