Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.02 KB

File metadata and controls

31 lines (22 loc) · 1.02 KB

FeatureFunctionDTO

Properties

Name Type Description Notes
type str
value str
content List[FunctionPropertyType]

Example

from cm_python_openapi_sdk.models.feature_function_dto import FeatureFunctionDTO

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

# convert the object into a dict
feature_function_dto_dict = feature_function_dto_instance.to_dict()
# create an instance of FeatureFunctionDTO from a dict
feature_function_dto_from_dict = FeatureFunctionDTO.from_dict(feature_function_dto_dict)

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