Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1023 Bytes

File metadata and controls

34 lines (25 loc) · 1023 Bytes

MarkerDTO

Properties

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

Example

from cm_python_openapi_sdk.models.marker_dto import MarkerDTO

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

# convert the object into a dict
marker_dto_dict = marker_dto_instance.to_dict()
# create an instance of MarkerDTO from a dict
marker_dto_from_dict = MarkerDTO.from_dict(marker_dto_dict)

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