v1StudioProjectsProjectIdPronunciationDictionariesPost method

Future<Response<CreatePronunciationDictionaryResponseModel>> v1StudioProjectsProjectIdPronunciationDictionariesPost({
  1. required String? projectId,
  2. String? xiApiKey,
  3. required BodyCreatePronunciationDictionariesV1StudioProjectsProjectIdPronunciationDictionariesPost? body,
})

Create Pronunciation Dictionaries @param project_id The ID of the Studio project. @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<CreatePronunciationDictionaryResponseModel>>
v1StudioProjectsProjectIdPronunciationDictionariesPost({
  required String? projectId,
  String? xiApiKey,
  required BodyCreatePronunciationDictionariesV1StudioProjectsProjectIdPronunciationDictionariesPost?
  body,
}) {
  generatedMapping.putIfAbsent(
    CreatePronunciationDictionaryResponseModel,
    () => CreatePronunciationDictionaryResponseModel.fromJsonFactory,
  );

  return _v1StudioProjectsProjectIdPronunciationDictionariesPost(
    projectId: projectId,
    xiApiKey: xiApiKey?.toString(),
    body: body,
  );
}