Skip to content

Commit 44f4095

Browse files
committed
feat(tts): add method parameters
Add parameter spellOutMode to synthesize
1 parent dbbc35f commit 44f4095

File tree

2 files changed

+135
-231
lines changed

2 files changed

+135
-231
lines changed

src/IBM.Watson.TextToSpeech.v1/ITextToSpeechService.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* (C) Copyright IBM Corp. 2016, 2021.
2+
* (C) Copyright IBM Corp. 2022.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -25,7 +25,7 @@ public partial interface ITextToSpeechService
2525
{
2626
DetailedResponse<Voices> ListVoices();
2727
DetailedResponse<Voice> GetVoice(string voice, string customizationId = null);
28-
DetailedResponse<System.IO.MemoryStream> Synthesize(string text, string accept = null, string voice = null, string customizationId = null);
28+
DetailedResponse<System.IO.MemoryStream> Synthesize(string text, string accept = null, string voice = null, string customizationId = null, string spellOutMode = null);
2929
DetailedResponse<Pronunciation> GetPronunciation(string text, string voice = null, string format = null, string customizationId = null);
3030
DetailedResponse<CustomModel> CreateCustomModel(string name, string language = null, string description = null);
3131
DetailedResponse<CustomModels> ListCustomModels(string language = null);

0 commit comments

Comments
 (0)