HeaderDescription represents a header description's translation key and its translated value.
| Name | Type | Description | Notes |
|---|---|---|---|
| nls_key | str | Identifies the header's description NLS translated string. | [optional] |
| nls_value | str | The header's description NLS translated string. | [optional] |
from ibm_gdsc_sdk_saas.models.reportsv3_header_description import Reportsv3HeaderDescription
# TODO update the JSON string below
json = "{}"
# create an instance of Reportsv3HeaderDescription from a JSON string
reportsv3_header_description_instance = Reportsv3HeaderDescription.from_json(json)
# print the JSON string representation of the object
print(Reportsv3HeaderDescription.to_json())
# convert the object into a dict
reportsv3_header_description_dict = reportsv3_header_description_instance.to_dict()
# create an instance of Reportsv3HeaderDescription from a dict
reportsv3_header_description_from_dict = Reportsv3HeaderDescription.from_dict(reportsv3_header_description_dict)