| Name | Type | Description | Notes |
|---|---|---|---|
| can_be_used_in_chart | bool | If the header can be used in charts. | [optional] |
| field_name | Reportsv3FieldName | [optional] | |
| group_type_id | int | Group type id for the filter. | [optional] |
| header_category | str | The category of the header. | [optional] |
| header_description | Reportsv3HeaderDescription | [optional] | |
| header_id | str | The header id. | [optional] |
| header_name | str | The header name. | [optional] |
| is_recommended | bool | If the header is recommended. | [optional] |
| table_name | str | Table name. | [optional] |
| type | Reportsv3HeaderType | [optional] [default to Reportsv3HeaderType.UNDEFINED_TYPE] | |
| type_length | int | Header type length. | [optional] |
from ibm_gdsc_sdk_saas.models.reportsv3_header import Reportsv3Header
# TODO update the JSON string below
json = "{}"
# create an instance of Reportsv3Header from a JSON string
reportsv3_header_instance = Reportsv3Header.from_json(json)
# print the JSON string representation of the object
print(Reportsv3Header.to_json())
# convert the object into a dict
reportsv3_header_dict = reportsv3_header_instance.to_dict()
# create an instance of Reportsv3Header from a dict
reportsv3_header_from_dict = Reportsv3Header.from_dict(reportsv3_header_dict)