Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.23 KB

File metadata and controls

33 lines (24 loc) · 1.23 KB

CommonReportrow

A row in a Reportsubsectionpart

Properties

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]

Example

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)

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