Example Usage

import { LanguageGroupCreateRequest } from "syllable-sdk/models/components";

let value: LanguageGroupCreateRequest = {
  name: "Call Center 1 Languages",
  description: "Languages spoken by operators at Call Center 1",
  languageConfigs: [
    {
      languageCode: "ko-KR",
      voiceProvider: "Google",
      voiceDisplayName: "Mark",
      dtmfCode: 1,
    },
  ],
  skipCurrentLanguageInMessage: false,
};

Fields

FieldTypeRequiredDescriptionExample
namestringTRUEThe name of the language group.Call Center 1 Languages
descriptionstringFALSEDescription of the language group.Languages spoken by operators at Call Center 1
languageConfigscomponents.LanguageConfig[]TRUEVoice and DTMF configurations for each language in the group.
skipCurrentLanguageInMessagebooleanTRUEWhether a message using the language group to generate a language DTMF menu should skip the agent’s current language in the menu.