Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.13 KB

File metadata and controls

34 lines (25 loc) · 1.13 KB

MarkerSelectorDTO

Properties

Name Type Description Notes
id str [optional]
name str
type str [optional]
title str [optional]
description str [optional]
content MarkerSelectorContentDTO

Example

from cm_python_openapi_sdk.models.marker_selector_dto import MarkerSelectorDTO

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

# convert the object into a dict
marker_selector_dto_dict = marker_selector_dto_instance.to_dict()
# create an instance of MarkerSelectorDTO from a dict
marker_selector_dto_from_dict = MarkerSelectorDTO.from_dict(marker_selector_dto_dict)

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