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

MultiSelectFilterDTO

Properties

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

Example

from cm_python_openapi_sdk.models.multi_select_filter_dto import MultiSelectFilterDTO

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

# convert the object into a dict
multi_select_filter_dto_dict = multi_select_filter_dto_instance.to_dict()
# create an instance of MultiSelectFilterDTO from a dict
multi_select_filter_dto_from_dict = MultiSelectFilterDTO.from_dict(multi_select_filter_dto_dict)

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