Skip to content

Latest commit

 

History

History
38 lines (29 loc) · 1.52 KB

File metadata and controls

38 lines (29 loc) · 1.52 KB

IndicatorDrillResponseDTO

Properties

Name Type Description Notes
id str [optional]
name str
type str [optional]
title str [optional]
description str [optional]
content IndicatorDrillContentDTO
links List[object] define keys links and page that are mandatory for all pageble responses [optional]
page PageDTO [optional]
access_info AccessInfoDTO [optional]
version int [optional]

Example

from cm_python_openapi_sdk.models.indicator_drill_response_dto import IndicatorDrillResponseDTO

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

# convert the object into a dict
indicator_drill_response_dto_dict = indicator_drill_response_dto_instance.to_dict()
# create an instance of IndicatorDrillResponseDTO from a dict
indicator_drill_response_dto_from_dict = IndicatorDrillResponseDTO.from_dict(indicator_drill_response_dto_dict)

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