/
home
/
desid573
/
public_html
/
payment
/
pdd
/
app
/
Vendor
/
Services
/
Twilio
/
Rest
/
/home/desid573/public_html/payment/pdd/app/Vendor/Services/Twilio/Rest
mkdir
upload
Name
Size
Mode
Actions
IPMessaging/
-
0755
rm
Lookups/
-
0755
rm
Monitor/
-
0755
rm
Pricing/
-
0755
rm
TaskRouter/
-
0755
rm
Trunking/
-
0755
rm
Account.php
934
0644
edit
dl
rm
Accounts.php
732
0644
edit
dl
rm
Address.php
427
0644
edit
dl
rm
Addresses.php
670
0644
edit
dl
rm
Application.php
95
0644
edit
dl
rm
Applications.php
259
0644
edit
dl
rm
AuthorizedConnectApp.php
104
0644
edit
dl
rm
AuthorizedConnectApps.php
228
0644
edit
dl
rm
AvailablePhoneNumber.php
105
0644
edit
dl
rm
AvailablePhoneNumbers.php
1695
0644
edit
dl
rm
Call.php
3535
0644
edit
dl
rm
Calls.php
1946
0644
edit
dl
rm
Conference.php
221
0644
edit
dl
rm
Conferences.php
91
0644
edit
dl
rm
ConnectApp.php
94
0644
edit
dl
rm
ConnectApps.php
219
0644
edit
dl
rm
Credential.php
586
0644
edit
dl
rm
CredentialList.php
850
0644
edit
dl
rm
CredentialListMapping.php
715
0644
edit
dl
rm
CredentialListMappings.php
798
0644
edit
dl
rm
CredentialLists.php
695
0644
edit
dl
rm
Credentials.php
875
0644
edit
dl
rm
DependentPhoneNumber.php
104
0644
edit
dl
rm
DependentPhoneNumbers.php
101
0644
edit
dl
rm
Domain.php
1486
0644
edit
dl
rm
Domains.php
831
0644
edit
dl
rm
Feedback.php
882
0644
edit
dl
rm
FeedbackSummary.php
901
0644
edit
dl
rm
IncomingPhoneNumber.php
2977
0644
edit
dl
rm
IncomingPhoneNumbers.php
1871
0644
edit
dl
rm
IpAccessControlList.php
901
0644
edit
dl
rm
IpAccessControlListMapping.php
726
0644
edit
dl
rm
IpAccessControlListMappings.php
857
0644
edit
dl
rm
IpAccessControlLists.php
825
0644
edit
dl
rm
IpAddress.php
662
0644
edit
dl
rm
IpAddresses.php
1063
0644
edit
dl
rm
Key.php
83
0644
edit
dl
rm
Keys.php
568
0644
edit
dl
rm
Media.php
949
0644
edit
dl
rm
MediaInstance.php
908
0644
edit
dl
rm
Member.php
583
0644
edit
dl
rm
Members.php
877
0644
edit
dl
rm
Message.php
1365
0644
edit
dl
rm
Messages.php
2708
0644
edit
dl
rm
Notification.php
96
0644
edit
dl
rm
Notifications.php
93
0644
edit
dl
rm
OutgoingCallerId.php
100
0644
edit
dl
rm
OutgoingCallerIds.php
278
0644
edit
dl
rm
Participant.php
174
0644
edit
dl
rm
Participants.php
293
0644
edit
dl
rm
Queue.php
187
0644
edit
dl
rm
Queues.php
506
0644
edit
dl
rm
Recording.php
196
0644
edit
dl
rm
Recordings.php
90
0644
edit
dl
rm
Sandbox.php
91
0644
edit
dl
rm
ShortCode.php
93
0644
edit
dl
rm
ShortCodes.php
258
0644
edit
dl
rm
Sip.php
505
0644
edit
dl
rm
SmsMessage.php
94
0644
edit
dl
rm
SmsMessages.php
473
0644
edit
dl
rm
Token.php
86
0644
edit
dl
rm
Tokens.php
539
0644
edit
dl
rm
Transcription.php
97
0644
edit
dl
rm
Transcriptions.php
94
0644
edit
dl
rm
UsageRecord.php
92
0644
edit
dl
rm
UsageRecords.php
1020
0644
edit
dl
rm
UsageTrigger.php
97
0644
edit
dl
rm
UsageTriggers.php
1233
0644
edit
dl
rm
Edit:
/home/desid573/public_html/payment/pdd/app/Vendor/Services/Twilio/Rest/IpAddresses.php
(1063B)
<?php class Services_Twilio_Rest_IpAddresses extends Services_Twilio_SIPListResource { public function __construct($client, $uri) { $this->instance_name = "Services_Twilio_Rest_IpAddress"; parent::__construct($client, $uri); } /** * Creates a new IpAddress instance * * Example usage: * * .. code-block:: php * * $client->account->sip->ip_access_control_lists->get('ALXXX')->ip_addresses->create( * "FriendlyName", "127.0.0.1" * ); * * :param string $friendly_name: the friendly name for the new IpAddress object * :param string $ip_address: the ip address for the new IpAddress object * :param array $params: a single array of parameters which is serialized and * sent directly to the Twilio API. */ public function create($friendly_name, $ip_address, $params = array()) { return parent::_create(array( 'FriendlyName' => $friendly_name, 'IpAddress' => $ip_address, ) + $params); } }
Save
cmd:
run