| Name |
Type |
Description |
Notes |
| values |
List[str] |
|
|
from cm_python_openapi_sdk.models.default_values_feature_dto import DefaultValuesFeatureDTO
# TODO update the JSON string below
json = "{}"
# create an instance of DefaultValuesFeatureDTO from a JSON string
default_values_feature_dto_instance = DefaultValuesFeatureDTO.from_json(json)
# print the JSON string representation of the object
print(DefaultValuesFeatureDTO.to_json())
# convert the object into a dict
default_values_feature_dto_dict = default_values_feature_dto_instance.to_dict()
# create an instance of DefaultValuesFeatureDTO from a dict
default_values_feature_dto_from_dict = DefaultValuesFeatureDTO.from_dict(default_values_feature_dto_dict)
[Back to Model list] [Back to API list] [Back to README]