Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.71 KB

File metadata and controls

36 lines (27 loc) · 1.71 KB

CommonReportsubsection

A Subsection in a Reportsection. It contains 3 Reportsubsectionparts (Header, Body and Footer)

Properties

Name Type Description Notes
a_obj_reportcolumn List[CommonReportcolumn]
i_reportsubsection_columncount int The number of Reportcolumns in the Reportsection
i_reportsubsection_width int The combined width of all the Reportcolumns in the Reportsection
obj_reportsubsectionpart_header CommonReportsubsectionpart
obj_reportsubsectionpart_body CommonReportsubsectionpart
obj_reportsubsectionpart_footer CommonReportsubsectionpart
s_reportsubsection_title str The title of this Reportsubsection [optional]

Example

from eZmaxApi.models.common_reportsubsection import CommonReportsubsection

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

# convert the object into a dict
common_reportsubsection_dict = common_reportsubsection_instance.to_dict()
# create an instance of CommonReportsubsection from a dict
common_reportsubsection_from_dict = CommonReportsubsection.from_dict(common_reportsubsection_dict)

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