Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.12 KB

CommonReportgroup.md

File metadata and controls

31 lines (22 loc) · 1.12 KB

CommonReportgroup

A group of reports Each Reportgroup is for a specific recipient or for a specific context.

Properties

Name Type Description Notes
a_obj_report List[CommonReport]
a_obj_reportcellstyle_custom List[CommonReportcellstyle]

Example

from eZmaxApi.models.common_reportgroup import CommonReportgroup

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

# convert the object into a dict
common_reportgroup_dict = common_reportgroup_instance.to_dict()
# create an instance of CommonReportgroup from a dict
common_reportgroup_form_dict = common_reportgroup.from_dict(common_reportgroup_dict)

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