A row in a Reportsubsectionpart
| Name | Type | Description | Notes |
|---|---|---|---|
| a_obj_reportcell | List[CommonReportcell] | ||
| obj_variableobject | Dict[str, object] | A Variable object without predefined property names | |
| i_reportrow_height | int | The reportrow height in pixels | |
| obj_reportcellstyle_custom | CommonReportcellstylecustom | [optional] |
from eZmaxApi.models.common_reportrow import CommonReportrow
# TODO update the JSON string below
json = "{}"
# create an instance of CommonReportrow from a JSON string
common_reportrow_instance = CommonReportrow.from_json(json)
# print the JSON string representation of the object
print(CommonReportrow.to_json())
# convert the object into a dict
common_reportrow_dict = common_reportrow_instance.to_dict()
# create an instance of CommonReportrow from a dict
common_reportrow_from_dict = CommonReportrow.from_dict(common_reportrow_dict)