| Name | Type | Description | Notes |
|---|---|---|---|
| type | str | ||
| blocks | List[IndicatorLinkDTO] |
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)