We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c23d95a commit 5985cb2Copy full SHA for 5985cb2
DotNetCliCodeSnippets/Voice/PlayTextToSpeech.cs
@@ -20,7 +20,7 @@ public async Task Execute()
20
var credentials = Credentials.FromAppIdAndPrivateKeyPath(vonageApplicationId, vonagePrivateKeyPath);
21
var client = new VonageClient(credentials);
22
23
- var command = new TalkCommand() { Text = text};
+ var command = new TalkCommand() { Text = text, Language = "en-US"};
24
25
var response = await client.VoiceClient.StartTalkAsync(uuid, command);
26
0 commit comments