Skip to content

Commit cfcd85d

Browse files
author
Api (Codebuild)
committed
Look for details in API documentation's changelog
1 parent db00918 commit cfcd85d

203 files changed

Lines changed: 10954 additions & 1482 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/python.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,4 @@ jobs:
2828
pip install -r test-requirements.txt
2929
- name: Test with pytest
3030
run: |
31-
pytest --cov={{packageName}}
31+
pytest --cov=eZmaxApi

.openapi-generator/FILES

Lines changed: 104 additions & 12 deletions
Large diffs are not rendered by default.

.openapi-generator/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
7.11.0
1+
7.12.0

README.md

Lines changed: 61 additions & 10 deletions
Large diffs are not rendered by default.

docs/CommonReport.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ A Report containing Reportsections
77
Name | Type | Description | Notes
88
------------ | ------------- | ------------- | -------------
99
**a_obj_reportsection** | [**List[CommonReportsection]**](CommonReportsection.md) | |
10+
**b_report_paginate** | **bool** | Whether we display pagination in the report | [optional]
11+
**s_report_title** | **str** | The title of this Report | [optional]
1012

1113
## Example
1214

docs/CommonReportcell.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ Name | Type | Description | Notes
88
------------ | ------------- | ------------- | -------------
99
**i_reportcell_columnspan** | **int** | The number of Reportcolumns the Reportcell spans |
1010
**i_reportcell_rowspan** | **int** | The number of Reportrows the Reportcell spans |
11+
**s_reportcell_content** | **str** | The content of this Reportcell |
12+
**i_reportcell_column** | **int** | Position of the column where it is placed |
1113

1214
## Example
1315

docs/CommonReportcolumn.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ Name | Type | Description | Notes
88
------------ | ------------- | ------------- | -------------
99
**obj_reportcellstyle_default** | [**CommonReportcellstyle**](CommonReportcellstyle.md) | |
1010
**i_reportcolumn_width** | **int** | The Reportcolumn width in pixels |
11+
**e_reportcolumn_type** | [**EnumReportdataType**](EnumReportdataType.md) | |
1112

1213
## Example
1314

docs/CommonReportgroup.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ Name | Type | Description | Notes
88
------------ | ------------- | ------------- | -------------
99
**a_obj_report** | [**List[CommonReport]**](CommonReport.md) | |
1010
**a_obj_reportcellstyle_custom** | [**List[CommonReportcellstyle]**](CommonReportcellstyle.md) | |
11+
**a_obj_reportgroup_parameter** | [**List[CommonReportgroupParameter]**](CommonReportgroupParameter.md) | |
12+
**s_reportgroup_filename** | **str** | The name of the file |
1113

1214
## Example
1315

docs/CommonReportgroupParameter.md

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
# CommonReportgroupParameter
2+
3+
A parameter of Reportgroup
4+
5+
## Properties
6+
7+
Name | Type | Description | Notes
8+
------------ | ------------- | ------------- | -------------
9+
**s_reportgroup_parameter_name** | **str** | The Reportparameter name |
10+
**s_reportgroup_parameter_value** | **str** | The Reportparameter value | [optional]
11+
**a_s_reportgroup_parameter_value** | **List[str]** | | [optional]
12+
13+
## Example
14+
15+
```python
16+
from eZmaxApi.models.common_reportgroup_parameter import CommonReportgroupParameter
17+
18+
# TODO update the JSON string below
19+
json = "{}"
20+
# create an instance of CommonReportgroupParameter from a JSON string
21+
common_reportgroup_parameter_instance = CommonReportgroupParameter.from_json(json)
22+
# print the JSON string representation of the object
23+
print(CommonReportgroupParameter.to_json())
24+
25+
# convert the object into a dict
26+
common_reportgroup_parameter_dict = common_reportgroup_parameter_instance.to_dict()
27+
# create an instance of CommonReportgroupParameter from a dict
28+
common_reportgroup_parameter_from_dict = CommonReportgroupParameter.from_dict(common_reportgroup_parameter_dict)
29+
```
30+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
31+
32+

docs/CommonReportrow.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ A row in a Reportsubsectionpart
77
Name | Type | Description | Notes
88
------------ | ------------- | ------------- | -------------
99
**a_obj_reportcell** | [**List[CommonReportcell]**](CommonReportcell.md) | |
10+
**obj_variableobject** | **Dict[str, object]** | A Variable object without predefined property names |
1011
**i_reportrow_height** | **int** | The reportrow height in pixels |
1112

1213
## Example

0 commit comments

Comments
 (0)