Skip to content
This repository was archived by the owner on Aug 15, 2024. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
public class Example {
public static void main(String[] args) {
Say say = new Say.Builder("Hello World!")
.voice(Say.Voice.ALICE)
.voice(Say.Voice.POLLY_AMY)
.language(Language.EN_GB)
.build();
VoiceResponse response = new VoiceResponse.Builder()
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?xml version="1.0" encoding="UTF-8"?>
<Response>
<Say voice="alice" language="en-GB">Hello World!</Say>
<Say voice="Polly.Amy" language="en-GB">Hello World!</Say>
</Response>
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<Response>
<Say voice="alice">Thanks for trying our documentation. Enjoy!</Say>
<Say voice="Polly.Amy">Thanks for trying our documentation. Enjoy!</Say>
<Play>https://demo.twilio.com/docs/classic.mp3</Play>
</Response>
2 changes: 1 addition & 1 deletion quickstart/php/voice/answer_call/answer_call.7.x.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
// Read a message aloud to the caller
$response->say(
"Thank you for calling! Have a great day.",
array("voice" => "alice")
array("voice" => "Polly.Amy")
);

echo $response;
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
// Read a message aloud to the caller
$response->say(
"Thank you for calling! Have a great day.",
array("voice" => "alice")
array("voice" => "Polly.Amy")
);

echo $response;
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ def answer_call():
resp = VoiceResponse()

# Read a message aloud to the caller
resp.say("Thank you for calling! Have a great day.", voice='alice')
resp.say("Thank you for calling! Have a great day.", voice='Polly.Amy')

return str(resp)

Expand Down
54 changes: 0 additions & 54 deletions rest/voice/generate-twiml-gather-input/example.java

This file was deleted.

5 changes: 0 additions & 5 deletions rest/voice/generate-twiml-gather-input/meta.json

This file was deleted.

29 changes: 0 additions & 29 deletions rest/voice/generate-twiml-gather-input/twiml-gather-input.6.x.cs

This file was deleted.

59 changes: 0 additions & 59 deletions rest/voice/generate-twiml-gather-input/twiml-gather-record.4.x.js

This file was deleted.

19 changes: 0 additions & 19 deletions rest/voice/generate-twiml-gather-input/twiml-gather-record.6.x.rb

This file was deleted.

34 changes: 0 additions & 34 deletions rest/voice/generate-twiml-gather-input/twiml-gather-record.8.x.py

This file was deleted.

This file was deleted.

20 changes: 0 additions & 20 deletions rest/voice/generate-twiml-gather-input/twiml-gather-record.php

This file was deleted.

This file was deleted.

44 changes: 0 additions & 44 deletions rest/voice/generate-twiml-gather/example.9.x.java

This file was deleted.

5 changes: 0 additions & 5 deletions rest/voice/generate-twiml-gather/meta.json

This file was deleted.

Loading