Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.36 KB

File metadata and controls

33 lines (24 loc) · 1.36 KB

CommonReportsection

A section in a Report. Each Reportsection shares Reportcolumns disposition with all its Reportsubsection

Properties

Name Type Description Notes
a_obj_reportsubsection List[CommonReportsubsection]
e_reportsection_horizontalalignment EnumHorizontalalignment
s_reportsection_title str The title of this Reportsection [optional]
s_reportsection_tabname str The name of tab in excel version [optional]

Example

from eZmaxApi.models.common_reportsection import CommonReportsection

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

# convert the object into a dict
common_reportsection_dict = common_reportsection_instance.to_dict()
# create an instance of CommonReportsection from a dict
common_reportsection_from_dict = CommonReportsection.from_dict(common_reportsection_dict)

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