| Name | Type | Description | Notes |
|---|---|---|---|
| content | List[MarkerSelectorResponseDTO] | [optional] | |
| links | List[object] | define keys links and page that are mandatory for all pageble responses | [optional] |
| page | PageDTO | [optional] |
from cm_python_openapi_sdk.models.marker_selector_paged_model_dto import MarkerSelectorPagedModelDTO
# TODO update the JSON string below
json = "{}"
# create an instance of MarkerSelectorPagedModelDTO from a JSON string
marker_selector_paged_model_dto_instance = MarkerSelectorPagedModelDTO.from_json(json)
# print the JSON string representation of the object
print(MarkerSelectorPagedModelDTO.to_json())
# convert the object into a dict
marker_selector_paged_model_dto_dict = marker_selector_paged_model_dto_instance.to_dict()
# create an instance of MarkerSelectorPagedModelDTO from a dict
marker_selector_paged_model_dto_from_dict = MarkerSelectorPagedModelDTO.from_dict(marker_selector_paged_model_dto_dict)