Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.14 KB

File metadata and controls

32 lines (23 loc) · 1.14 KB

MapContentDTO

Properties

Name Type Description Notes
options MapContentDTOOptions [optional]
base_layer MapContentDTOBaseLayer [optional]
context_menu MapContextMenuDTO [optional]
layers List[LayerDTO] [optional]

Example

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)

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