Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.05 KB

File metadata and controls

31 lines (22 loc) · 1.05 KB

DefaultSelectedDTO

Properties

Name Type Description Notes
dataset str [optional]
ids List[object] [optional]
coordinates List[CenterDTO] [optional]

Example

from cm_python_openapi_sdk.models.default_selected_dto import DefaultSelectedDTO

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

# convert the object into a dict
default_selected_dto_dict = default_selected_dto_instance.to_dict()
# create an instance of DefaultSelectedDTO from a dict
default_selected_dto_from_dict = DefaultSelectedDTO.from_dict(default_selected_dto_dict)

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