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
2 changes: 1 addition & 1 deletion twiml/voice/pay/pay-6/output/pay-6.twiml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<Response>
<Pay>
<Prompt for="payment-card-number">
<Say>Please enter your 15 digit Visa or Mastercard number.</Say>
<Say>Please enter your 16 digit Visa or Mastercard number.</Say>
</Prompt>
</Pay>
</Response>
2 changes: 1 addition & 1 deletion twiml/voice/pay/pay-6/pay-6.3.x.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ const pay = response.pay();
const prompt = pay.prompt({
for: 'payment-card-number'
});
prompt.say('Please enter your 15 digit Visa or Mastercard number.');
prompt.say('Please enter your 16 digit Visa or Mastercard number.');

console.log(response.toString());
2 changes: 1 addition & 1 deletion twiml/voice/pay/pay-6/pay-6.5.x.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ static void Main()
var response = new VoiceResponse();
var pay = new Pay();
var prompt = new Prompt(for_: "payment-card-number");
prompt.Say("Please enter your 15 digit Visa or Mastercard number.");
prompt.Say("Please enter your 16 digit Visa or Mastercard number.");
pay.Append(prompt);
response.Append(pay);

Expand Down
2 changes: 1 addition & 1 deletion twiml/voice/pay/pay-6/pay-6.5.x.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@
$response = new VoiceResponse();
$pay = $response->pay();
$prompt = $pay->prompt(['for' => 'payment-card-number']);
$prompt->say('Please enter your 15 digit Visa or Mastercard number.');
$prompt->say('Please enter your 16 digit Visa or Mastercard number.');

echo $response;
2 changes: 1 addition & 1 deletion twiml/voice/pay/pay-6/pay-6.5.x.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
response.pay do |pay|
pay.prompt(for: 'payment-card-number') do |prompt|
prompt
.say(message: 'Please enter your 15 digit Visa or Mastercard number.')
.say(message: 'Please enter your 16 digit Visa or Mastercard number.')
end
end

Expand Down
2 changes: 1 addition & 1 deletion twiml/voice/pay/pay-6/pay-6.6.x.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@
$response = new VoiceResponse();
$pay = $response->pay();
$prompt = $pay->prompt(['for' => 'payment-card-number']);
$prompt->say('Please enter your 15 digit Visa or Mastercard number.');
$prompt->say('Please enter your 16 digit Visa or Mastercard number.');

echo $response;
2 changes: 1 addition & 1 deletion twiml/voice/pay/pay-6/pay-6.6.x.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
response = VoiceResponse()
pay = Pay()
prompt = Prompt(for_='payment-card-number')
prompt.say('Please enter your 15 digit Visa or Mastercard number.')
prompt.say('Please enter your 16 digit Visa or Mastercard number.')
pay.append(prompt)
response.append(pay)

Expand Down
2 changes: 1 addition & 1 deletion twiml/voice/pay/pay-6/pay-6.7.x.java
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
public class Example {
public static void main(String[] args) {
Say say = new Say
.Builder("Please enter your 15 digit Visa or Mastercard number.")
.Builder("Please enter your 16 digit Visa or Mastercard number.")
.build();
Prompt prompt = new Prompt.Builder().for_(Prompt.For
.PAYMENT_CARD_NUMBER).say(say).build();
Expand Down
2 changes: 1 addition & 1 deletion twiml/voice/pay/pay-6/pay-6.8.x.java
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
public class Example {
public static void main(String[] args) {
Say say = new Say
.Builder("Please enter your 15 digit Visa or Mastercard number.")
.Builder("Please enter your 16 digit Visa or Mastercard number.")
.build();
Prompt prompt = new Prompt.Builder().for_(Prompt.For
.PAYMENT_CARD_NUMBER).say(say).build();
Expand Down