Report header.
| Name | Type | Description | Notes |
|---|---|---|---|
| aggregation_type | Reportsv3AggregationType | [optional] [default to Reportsv3AggregationType.UNDEFINED_AGG_TYPE] | |
| field_name | Reportsv3FieldName | [optional] | |
| group_type_id | int | Group type id for the filter. | [optional] |
| header_data_type | Reportsv3HeaderDataType | [optional] [default to Reportsv3HeaderDataType.UNDEFINED_REPORT_HEADER_TYPE] | |
| header_description | Reportsv3HeaderDescription | [optional] | |
| header_id | str | Header ID. | [optional] |
| header_name | str | The header name. | [optional] |
| header_type | Reportsv3HeaderType | [optional] [default to Reportsv3HeaderType.UNDEFINED_TYPE] | |
| header_type_length | int | Header type length. | [optional] |
| literal | Reportsv3Literal | [optional] | |
| order_by | Reportsv3OrderBy | [optional] [default to Reportsv3OrderBy.UNDEFINED_ORDER_BY] | |
| order_by_seq | int | Order by sequence. | [optional] |
| schema_name | str | Schema name. | [optional] |
| sequence | int | Column sequence number. | [optional] |
| table_name | str | Table name. | [optional] |
from ibm_gdsc_sdk_saas.models.reportsv3_report_header import Reportsv3ReportHeader
# TODO update the JSON string below
json = "{}"
# create an instance of Reportsv3ReportHeader from a JSON string
reportsv3_report_header_instance = Reportsv3ReportHeader.from_json(json)
# print the JSON string representation of the object
print(Reportsv3ReportHeader.to_json())
# convert the object into a dict
reportsv3_report_header_dict = reportsv3_report_header_instance.to_dict()
# create an instance of Reportsv3ReportHeader from a dict
reportsv3_report_header_from_dict = Reportsv3ReportHeader.from_dict(reportsv3_report_header_dict)