Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.07 KB

File metadata and controls

29 lines (20 loc) · 1.07 KB

DefaultValuesMultiSelectDTO

Properties

Name Type Description Notes
values List[object] [optional]

Example

from cm_python_openapi_sdk.models.default_values_multi_select_dto import DefaultValuesMultiSelectDTO

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

# convert the object into a dict
default_values_multi_select_dto_dict = default_values_multi_select_dto_instance.to_dict()
# create an instance of DefaultValuesMultiSelectDTO from a dict
default_values_multi_select_dto_from_dict = DefaultValuesMultiSelectDTO.from_dict(default_values_multi_select_dto_dict)

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