Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.2 KB

File metadata and controls

33 lines (24 loc) · 1.2 KB

CommonReportcell

A cell in a Reportrow

Properties

Name Type Description Notes
i_reportcell_columnspan int The number of Reportcolumns the Reportcell spans
i_reportcell_rowspan int The number of Reportrows the Reportcell spans
s_reportcell_content str The content of this Reportcell
i_reportcell_column int Position of the column where it is placed

Example

from eZmaxApi.models.common_reportcell import CommonReportcell

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

# convert the object into a dict
common_reportcell_dict = common_reportcell_instance.to_dict()
# create an instance of CommonReportcell from a dict
common_reportcell_from_dict = CommonReportcell.from_dict(common_reportcell_dict)

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