Skip to content

Commit 886b56c

Browse files
committed
replace 867-5309 with 867-5310
1 parent 0e35856 commit 886b56c

File tree

496 files changed

+537
-537
lines changed

Some content is hidden

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

496 files changed

+537
-537
lines changed

README.md

Lines changed: 1 addition & 1 deletion

add-ons/lookups/payfone-tcpa-compliance/payfone-tcpa-compliance.7.x.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ public static void main(String[] args) {
2222
}};
2323

2424
PhoneNumber number = PhoneNumber
25-
.fetcher(new com.twilio.type.PhoneNumber("+15108675309"))
25+
.fetcher(new com.twilio.type.PhoneNumber("+15108675310"))
2626
.setAddOns(addOns)
2727
.setAddOnsData(addOnsData)
2828
.fetch();

client/connect-call-2/connect-call-2.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Connect a call when button clicked
22
document.getElementById('button-call').onclick = function() {
33
// get the phone number to connect the call to
4-
const params = { To: '15558675309' };
4+
const params = { To: '15558675310' };
55

66
console.log('Calling ' + params.To + '...');
77
Twilio.Device.connect(params);
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<Response>
33
<Dial callerId="+15017250604">
4-
<Number>+15558675309</Number>
4+
<Number>+15558675310</Number>
55
</Dial>
66
</Response>

fax/basic-send/basic-send.3.x.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ const client = require('twilio')(accountSid, authToken);
66

77
client.fax.v1.faxes
88
.create({
9-
to: '+15558675309',
9+
to: '+15558675310',
1010
from: '+15017250604',
1111
mediaUrl: 'https://www.twilio.com/docs/documents/25/justthefaxmaam.pdf',
1212
})

fax/basic-send/basic-send.5.x.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ static void Main(string[] args)
1414
const string authToken = "your_auth_token";
1515
TwilioClient.Init(accountSid, authToken);
1616

17-
var to = "+15558675309";
17+
var to = "+15558675310";
1818
var mediaUrl = new Uri(
1919
"https://www.twilio.com/docs/documents/25/justthefaxmaam.pdf");
2020

fax/basic-send/basic-send.5.x.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"from" => "+15017250604"
1313
);
1414
$fax = $client->fax->v1->faxes->create(
15-
"+15558675309",
15+
"+15558675310",
1616
"https://www.twilio.com/docs/documents/25/justthefaxmaam.pdf",
1717
$options
1818
);

fax/basic-send/basic-send.5.x.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
request = Net::HTTP::Post.new uri.request_uri
1414
request.basic_auth account_sid, auth_token
15-
request.body = URI.encode_www_form(To: '+15558675309',
15+
request.body = URI.encode_www_form(To: '+15558675310',
1616
From: '+15017250604',
1717
MediaUrl: 'https://www.twilio.com/docs/documents/25/justthefaxmaam.pdf')
1818

fax/basic-send/basic-send.6.x.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
fax = client.fax.v1.faxes.create(
1010
from_="+15017250604",
11-
to="+15558675309",
11+
to="+15558675310",
1212
media_url="https://www.twilio.com/docs/documents/25/justthefaxmaam.pdf"
1313
)
1414

fax/basic-send/basic-send.7.x.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ public static void main(String[] args) throws URISyntaxException {
1414
Twilio.init(ACCOUNT_SID, AUTH_TOKEN);
1515

1616
String from = "+15017250604";
17-
String to = "+15558675309";
17+
String to = "+15558675310";
1818
URI mediaUrl = new URI("https://www.twilio.com/docs/documents/25/justthefaxmaam.pdf");
1919
FaxCreator faxCreator = Fax.creator(to, mediaUrl);
2020
faxCreator.setFrom(from);

0 commit comments

Comments
 (0)