Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1010 Bytes

File metadata and controls

31 lines (22 loc) · 1010 Bytes

DatasetVtTypeDTO

Properties

Name Type Description Notes
type str
url_template str
zoom ZoomDTO [optional]

Example

from cm_python_openapi_sdk.models.dataset_vt_type_dto import DatasetVtTypeDTO

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

# convert the object into a dict
dataset_vt_type_dto_dict = dataset_vt_type_dto_instance.to_dict()
# create an instance of DatasetVtTypeDTO from a dict
dataset_vt_type_dto_from_dict = DatasetVtTypeDTO.from_dict(dataset_vt_type_dto_dict)

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