| Name | Type | Description | Notes |
|---|---|---|---|
| options | MapContentDTOOptions | [optional] | |
| base_layer | MapContentDTOBaseLayer | [optional] | |
| context_menu | MapContextMenuDTO | [optional] | |
| layers | List[LayerDTO] | [optional] |
from cm_python_openapi_sdk.models.map_content_dto import MapContentDTO
# TODO update the JSON string below
json = "{}"
# create an instance of MapContentDTO from a JSON string
map_content_dto_instance = MapContentDTO.from_json(json)
# print the JSON string representation of the object
print(MapContentDTO.to_json())
# convert the object into a dict
map_content_dto_dict = map_content_dto_instance.to_dict()
# create an instance of MapContentDTO from a dict
map_content_dto_from_dict = MapContentDTO.from_dict(map_content_dto_dict)