Skip to content

Commit ce11185

Browse files
authored
Deved 8470 (TwilioDevEd#1031)
* Remove unused say-5 snippet * Remove say-2 snippet * Remove say-1 and say-3 snippets * Remove say-4 snippets * Replace alice with Polly.Amy in quickstart/python/voice * Remove alice from quickstart/php/voice/ * Remove alice from guides/migration/java-6-to-7 * Remove alice from guides/voice/make-outbound-calls-guide * Remove rest/voice/generate-twiml-gather snippet * Remove rest/voice/generate-twiml-record * Remove rest/voice/generate-twiml-gather-input
1 parent 2c06037 commit ce11185

File tree

81 files changed

+6
-1385
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

81 files changed

+6
-1385
lines changed

guides/migration/java-6-to-7/basic-say-twiml/basic-say-twiml.7.x.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
public class Example {
88
public static void main(String[] args) {
99
Say say = new Say.Builder("Hello World!")
10-
.voice(Say.Voice.ALICE)
10+
.voice(Say.Voice.POLLY_AMY)
1111
.language(Language.EN_GB)
1212
.build();
1313
VoiceResponse response = new VoiceResponse.Builder()
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<Response>
3-
<Say voice="alice" language="en-GB">Hello World!</Say>
3+
<Say voice="Polly.Amy" language="en-GB">Hello World!</Say>
44
</Response>
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<Response>
3-
<Say voice="alice">Thanks for trying our documentation. Enjoy!</Say>
3+
<Say voice="Polly.Amy">Thanks for trying our documentation. Enjoy!</Say>
44
<Play>https://demo.twilio.com/docs/classic.mp3</Play>
55
</Response>

quickstart/php/voice/answer_call/answer_call.7.x.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
// Read a message aloud to the caller
99
$response->say(
1010
"Thank you for calling! Have a great day.",
11-
array("voice" => "alice")
11+
array("voice" => "Polly.Amy")
1212
);
1313

1414
echo $response;

quickstart/php/voice/answer_call_without_composer/answer_call.7.x.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
// Read a message aloud to the caller
1010
$response->say(
1111
"Thank you for calling! Have a great day.",
12-
array("voice" => "alice")
12+
array("voice" => "Polly.Amy")
1313
);
1414

1515
echo $response;

quickstart/python/voice/example-2-receive-call/respond_to_call.8.x.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ def answer_call():
1111
resp = VoiceResponse()
1212

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

1616
return str(resp)
1717

rest/voice/generate-twiml-gather-input/example.java

Lines changed: 0 additions & 54 deletions
This file was deleted.

rest/voice/generate-twiml-gather-input/meta.json

Lines changed: 0 additions & 5 deletions
This file was deleted.

rest/voice/generate-twiml-gather-input/twiml-gather-input.6.x.cs

Lines changed: 0 additions & 29 deletions
This file was deleted.

rest/voice/generate-twiml-gather-input/twiml-gather-record.4.x.js

Lines changed: 0 additions & 59 deletions
This file was deleted.

0 commit comments

Comments
 (0)