Get list of possible salary table lines
Returns list of possible salary table lines grouped by calendar year
        GET
    /api-v1/organization/salary-table/line-names/{countryId}
  
  curl \
 --request GET 'https://wyzio.app/api-v1/organization/salary-table/line-names/{countryId}' \
 --header "TARGET-ORGANIZATION-ID: 42" \
 --header "WEAL-TOKEN: string"
    
        Response examples (200)
  
  {
  "additionalProperty1": [
    {
      "calendarYear": 42,
      "description": {
        "de": "string",
        "en": "string",
        "fr": "string",
        "it": "string"
      },
      "id": 42,
      "isAutomaticallyAdded": true,
      "isHourlyWageLine": true,
      "number": 42,
      "payslipEntityId": 42,
      "systemLine": {
        "id": 42,
        "payslipLineType": "string",
        "systemAdjustmentLineNumber": 42
      }
    }
  ],
  "additionalProperty2": [
    {
      "calendarYear": 42,
      "description": {
        "de": "string",
        "en": "string",
        "fr": "string",
        "it": "string"
      },
      "id": 42,
      "isAutomaticallyAdded": true,
      "isHourlyWageLine": true,
      "number": 42,
      "payslipEntityId": 42,
      "systemLine": {
        "id": 42,
        "payslipLineType": "string",
        "systemAdjustmentLineNumber": 42
      }
    }
  ]
}