v1PronunciationDictionariesDictionaryIdVersionIdDownloadGet method

Future<Response<String>> v1PronunciationDictionariesDictionaryIdVersionIdDownloadGet({
  1. required String? dictionaryId,
  2. required String? versionId,
  3. String? xiApiKey,
})

Get A Pls File With A Pronunciation Dictionary Version Rules @param dictionary_id The id of the pronunciation dictionary @param version_id The id of the version of the pronunciation dictionary @param xi-api-key Your API key. This is required by most endpoints to access our API programatically. You can view your xi-api-key using the 'Profile' tab on the website.

Implementation

Future<chopper.Response<String>>
v1PronunciationDictionariesDictionaryIdVersionIdDownloadGet({
  required String? dictionaryId,
  required String? versionId,
  String? xiApiKey,
}) {
  return _v1PronunciationDictionariesDictionaryIdVersionIdDownloadGet(
    dictionaryId: dictionaryId,
    versionId: versionId,
    xiApiKey: xiApiKey?.toString(),
  );
}