/home/techb158/ileadtechnology.com/SSM/vendor/twilio/sdk/src/Twilio/Rest
NameSizeModeActions
Accounts/-0755rm
Api/-0755rm
Authy/-0755rm
Autopilot/-0755rm
Chat/-0755rm
Conversations/-0755rm
Fax/-0755rm
FlexApi/-0755rm
Insights/-0755rm
IpMessaging/-0755rm
Lookups/-0755rm
Messaging/-0755rm
Monitor/-0755rm
Notify/-0755rm
Numbers/-0755rm
Preview/-0755rm
Pricing/-0755rm
Proxy/-0755rm
Serverless/-0755rm
Studio/-0755rm
Sync/-0755rm
Taskrouter/-0755rm
Trunking/-0755rm
Verify/-0755rm
Video/-0755rm
Voice/-0755rm
Wireless/-0755rm
Accounts.php24230644editdlrm
Api.php151490644editdlrm
Authy.php31560644editdlrm
Autopilot.php27550644editdlrm
Chat.php34980644editdlrm
Client.php297710644editdlrm
Conversations.php33330644editdlrm
Fax.php26170644editdlrm
FlexApi.php42890644editdlrm
Insights.php26520644editdlrm
IpMessaging.php36470644editdlrm
Lookups.php27740644editdlrm
Messaging.php36950644editdlrm
Monitor.php31840644editdlrm
Notify.php32380644editdlrm
Numbers.php24580644editdlrm
Preview.php149260644editdlrm
Pricing.php31430644editdlrm
Proxy.php26790644editdlrm
Serverless.php27430644editdlrm
Studio.php31940644editdlrm
Sync.php26590644editdlrm
Taskrouter.php27550644editdlrm
Trunking.php27010644editdlrm
Verify.php26930644editdlrm
Video.php53640644editdlrm
Voice.php24240644editdlrm
Wireless.php39550644editdlrm
Edit: /home/techb158/ileadtechnology.com/SSM/vendor/twilio/sdk/src/Twilio/Rest/Taskrouter.php (2755B)
baseUrl = 'https://taskrouter.twilio.com'; } /** * @return \Twilio\Rest\Taskrouter\V1 Version v1 of taskrouter */ protected function getV1() { if (!$this->_v1) { $this->_v1 = new V1($this); } return $this->_v1; } /** * 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($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($name, $arguments) { $method = 'context' . \ucfirst($name); if (\method_exists($this, $method)) { return \call_user_func_array(array($this, $method), $arguments); } throw new TwilioException('Unknown context ' . $name); } /** * @return \Twilio\Rest\Taskrouter\V1\WorkspaceList */ protected function getWorkspaces() { return $this->v1->workspaces; } /** * @param string $sid The SID of the resource to fetch * @return \Twilio\Rest\Taskrouter\V1\WorkspaceContext */ protected function contextWorkspaces($sid) { return $this->v1->workspaces($sid); } /** * Provide a friendly representation * * @return string Machine friendly representation */ public function __toString() { return '[Twilio.Taskrouter]'; } }