Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 947 Bytes

File metadata and controls

31 lines (22 loc) · 947 Bytes

VariablesDTO

Properties

Name Type Description Notes
type str
title str
variables List[VariableDTO]

Example

from cm_python_openapi_sdk.models.variables_dto import VariablesDTO

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

# convert the object into a dict
variables_dto_dict = variables_dto_instance.to_dict()
# create an instance of VariablesDTO from a dict
variables_dto_from_dict = VariablesDTO.from_dict(variables_dto_dict)

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