Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.02 KB

CommonReportrow.md

File metadata and controls

31 lines (22 loc) · 1.02 KB

CommonReportrow

A row in a Reportsubsectionpart

Properties

Name Type Description Notes
a_obj_reportcell List[CommonReportcell]
i_reportrow_height int The reportrow height in pixels

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_form_dict = common_reportrow.from_dict(common_reportrow_dict)

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