Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.1 KB

File metadata and controls

36 lines (27 loc) · 1.1 KB

RankingDTO

Properties

Name Type Description Notes
type str
title str [optional]
indicator str [optional]
default_layer str [optional]
feature_type str [optional]
direction str [optional]
collapsed bool [optional]
visualized bool [optional]

Example

from cm_python_openapi_sdk.models.ranking_dto import RankingDTO

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

# convert the object into a dict
ranking_dto_dict = ranking_dto_instance.to_dict()
# create an instance of RankingDTO from a dict
ranking_dto_from_dict = RankingDTO.from_dict(ranking_dto_dict)

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