Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 921 Bytes

File metadata and controls

30 lines (21 loc) · 921 Bytes

BlockRowDTO

Properties

Name Type Description Notes
type str
blocks List[IndicatorLinkDTO]

Example

from cm_python_openapi_sdk.models.block_row_dto import BlockRowDTO

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

# convert the object into a dict
block_row_dto_dict = block_row_dto_instance.to_dict()
# create an instance of BlockRowDTO from a dict
block_row_dto_from_dict = BlockRowDTO.from_dict(block_row_dto_dict)

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