/
home
/
techb158
/
dev.balacoffee.com
/
vendor
/
twilio
/
sdk
/
src
/
Twilio
/
Rest
/
/home/techb158/dev.balacoffee.com/vendor/twilio/sdk/src/Twilio/Rest
mkdir
upload
Name
Size
Mode
Actions
Accounts/
-
0755
rm
Api/
-
0755
rm
Autopilot/
-
0755
rm
Bulkexports/
-
0755
rm
Chat/
-
0755
rm
Content/
-
0755
rm
Conversations/
-
0755
rm
Events/
-
0755
rm
FlexApi/
-
0755
rm
FrontlineApi/
-
0755
rm
Insights/
-
0755
rm
IpMessaging/
-
0755
rm
Lookups/
-
0755
rm
Media/
-
0755
rm
Messaging/
-
0755
rm
Microvisor/
-
0755
rm
Monitor/
-
0755
rm
Notify/
-
0755
rm
Numbers/
-
0755
rm
Oauth/
-
0755
rm
Preview/
-
0755
rm
Pricing/
-
0755
rm
Proxy/
-
0755
rm
Routes/
-
0755
rm
Serverless/
-
0755
rm
Studio/
-
0755
rm
Supersim/
-
0755
rm
Sync/
-
0755
rm
Taskrouter/
-
0755
rm
Trunking/
-
0755
rm
Trusthub/
-
0755
rm
Verify/
-
0755
rm
Video/
-
0755
rm
Voice/
-
0755
rm
Wireless/
-
0755
rm
Accounts.php
3217
0644
edit
dl
rm
Api.php
14204
0644
edit
dl
rm
Autopilot.php
2813
0644
edit
dl
rm
Bulkexports.php
3395
0644
edit
dl
rm
Chat.php
4143
0644
edit
dl
rm
Client.php
35064
0644
edit
dl
rm
Content.php
2755
0644
edit
dl
rm
Conversations.php
6107
0644
edit
dl
rm
Events.php
3998
0644
edit
dl
rm
FlexApi.php
9790
0644
edit
dl
rm
FrontlineApi.php
2565
0644
edit
dl
rm
Insights.php
4047
0644
edit
dl
rm
IpMessaging.php
3349
0644
edit
dl
rm
Lookups.php
2907
0644
edit
dl
rm
Media.php
3662
0644
edit
dl
rm
Messaging.php
5844
0644
edit
dl
rm
Microvisor.php
4067
0644
edit
dl
rm
Monitor.php
2987
0644
edit
dl
rm
Notify.php
3044
0644
edit
dl
rm
Numbers.php
2305
0644
edit
dl
rm
Oauth.php
3527
0644
edit
dl
rm
Preview.php
9868
0644
edit
dl
rm
Pricing.php
4048
0644
edit
dl
rm
Proxy.php
2525
0644
edit
dl
rm
Routes.php
3537
0644
edit
dl
rm
Serverless.php
2574
0644
edit
dl
rm
Studio.php
2993
0644
edit
dl
rm
Supersim.php
6037
0644
edit
dl
rm
Sync.php
2508
0644
edit
dl
rm
Taskrouter.php
2586
0644
edit
dl
rm
Trunking.php
2538
0644
edit
dl
rm
Trusthub.php
6016
0644
edit
dl
rm
Verify.php
4807
0644
edit
dl
rm
Video.php
4979
0644
edit
dl
rm
Voice.php
5004
0644
edit
dl
rm
Wireless.php
3688
0644
edit
dl
rm
Edit:
/home/techb158/dev.balacoffee.com/vendor/twilio/sdk/src/Twilio/Rest/IpMessaging.php
(3349B)
<?php /** * This code was generated by * \ / _ _ _| _ _ * | (_)\/(_)(_|\/| |(/_ v1.0.0 * / / */ namespace Twilio\Rest; use Twilio\Domain; use Twilio\Exceptions\TwilioException; use Twilio\Rest\IpMessaging\V1; use Twilio\Rest\IpMessaging\V2; /** * @property \Twilio\Rest\IpMessaging\V1 $v1 * @property \Twilio\Rest\IpMessaging\V2 $v2 * @property \Twilio\Rest\IpMessaging\V2\CredentialList $credentials * @property \Twilio\Rest\IpMessaging\V2\ServiceList $services * @method \Twilio\Rest\IpMessaging\V2\CredentialContext credentials(string $sid) * @method \Twilio\Rest\IpMessaging\V2\ServiceContext services(string $sid) */ class IpMessaging extends Domain { protected $_v1; protected $_v2; /** * Construct the IpMessaging Domain * * @param Client $client Client to communicate with Twilio */ public function __construct(Client $client) { parent::__construct($client); $this->baseUrl = 'https://ip-messaging.twilio.com'; } /** * @return V1 Version v1 of ip_messaging */ protected function getV1(): V1 { if (!$this->_v1) { $this->_v1 = new V1($this); } return $this->_v1; } /** * @return V2 Version v2 of ip_messaging */ protected function getV2(): V2 { if (!$this->_v2) { $this->_v2 = new V2($this); } return $this->_v2; } /** * Magic getter to lazy load version * * @param string $name Version to return * @return \Twilio\Version The requested version * @throws TwilioException For unknown versions */ public function __get(string $name) { $method = 'get' . \ucfirst($name); if (\method_exists($this, $method)) { return $this->$method(); } throw new TwilioException('Unknown version ' . $name); } /** * Magic caller to get resource contexts * * @param string $name Resource to return * @param array $arguments Context parameters * @return \Twilio\InstanceContext The requested resource context * @throws TwilioException For unknown resource */ public function __call(string $name, array $arguments) { $method = 'context' . \ucfirst($name); if (\method_exists($this, $method)) { return \call_user_func_array([$this, $method], $arguments); } throw new TwilioException('Unknown context ' . $name); } protected function getCredentials(): \Twilio\Rest\IpMessaging\V2\CredentialList { return $this->v2->credentials; } /** * @param string $sid The sid */ protected function contextCredentials(string $sid): \Twilio\Rest\IpMessaging\V2\CredentialContext { return $this->v2->credentials($sid); } protected function getServices(): \Twilio\Rest\IpMessaging\V2\ServiceList { return $this->v2->services; } /** * @param string $sid The sid */ protected function contextServices(string $sid): \Twilio\Rest\IpMessaging\V2\ServiceContext { return $this->v2->services($sid); } /** * Provide a friendly representation * * @return string Machine friendly representation */ public function __toString(): string { return '[Twilio.IpMessaging]'; } }
Save
cmd:
run