v1PronunciationDictionariesPronunciationDictionaryIdAddRulesPost method
Future<Response<PronunciationDictionaryRulesResponseModel> >
v1PronunciationDictionariesPronunciationDictionaryIdAddRulesPost({
- required String? pronunciationDictionaryId,
- String? xiApiKey,
- required BodyAddRulesToThePronunciationDictionaryV1PronunciationDictionariesPronunciationDictionaryIdAddRulesPost? body,
Add Rules To The Pronunciation Dictionary @param pronunciation_dictionary_id The id 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<PronunciationDictionaryRulesResponseModel>>
v1PronunciationDictionariesPronunciationDictionaryIdAddRulesPost({
required String? pronunciationDictionaryId,
String? xiApiKey,
required BodyAddRulesToThePronunciationDictionaryV1PronunciationDictionariesPronunciationDictionaryIdAddRulesPost?
body,
}) {
generatedMapping.putIfAbsent(
PronunciationDictionaryRulesResponseModel,
() => PronunciationDictionaryRulesResponseModel.fromJsonFactory,
);
return _v1PronunciationDictionariesPronunciationDictionaryIdAddRulesPost(
pronunciationDictionaryId: pronunciationDictionaryId,
xiApiKey: xiApiKey?.toString(),
body: body,
);
}