baseUrl = 'https://preview.twilio.com'; } /** * @return \Twilio\Rest\Preview\BulkExports Version bulkExports of preview */ protected function getBulkExports() { if (!$this->_bulkExports) { $this->_bulkExports = new PreviewBulkExports($this); } return $this->_bulkExports; } /** * @return \Twilio\Rest\Preview\DeployedDevices Version deployedDevices of * preview */ protected function getDeployedDevices() { if (!$this->_deployedDevices) { $this->_deployedDevices = new PreviewDeployedDevices($this); } return $this->_deployedDevices; } /** * @return \Twilio\Rest\Preview\HostedNumbers Version hostedNumbers of preview */ protected function getHostedNumbers() { if (!$this->_hostedNumbers) { $this->_hostedNumbers = new PreviewHostedNumbers($this); } return $this->_hostedNumbers; } /** * @return \Twilio\Rest\Preview\Marketplace Version marketplace of preview */ protected function getMarketplace() { if (!$this->_marketplace) { $this->_marketplace = new PreviewMarketplace($this); } return $this->_marketplace; } /** * @return \Twilio\Rest\Preview\Proxy Version proxy of preview */ protected function getProxy() { if (!$this->_proxy) { $this->_proxy = new PreviewProxy($this); } return $this->_proxy; } /** * @return \Twilio\Rest\Preview\Studio Version studio of preview */ protected function getStudio() { if (!$this->_studio) { $this->_studio = new PreviewStudio($this); } return $this->_studio; } /** * @return \Twilio\Rest\Preview\AccSecurity Version accSecurity of preview */ protected function getAccSecurity() { if (!$this->_accSecurity) { $this->_accSecurity = new PreviewAccSecurity($this); } return $this->_accSecurity; } /** * @return \Twilio\Rest\Preview\Sync Version sync of preview */ protected function getSync() { if (!$this->_sync) { $this->_sync = new PreviewSync($this); } return $this->_sync; } /** * @return \Twilio\Rest\Preview\Understand Version understand of preview */ protected function getUnderstand() { if (!$this->_understand) { $this->_understand = new PreviewUnderstand($this); } return $this->_understand; } /** * @return \Twilio\Rest\Preview\Wireless Version wireless of preview */ protected function getWireless() { if (!$this->_wireless) { $this->_wireless = new PreviewWireless($this); } return $this->_wireless; } /** * Magic getter to lazy load version * * @param string $name Version to return * @return \Twilio\Version The requested version * @throws \Twilio\Exceptions\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 \Twilio\Exceptions\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\Preview\BulkExports\ExportList */ protected function getExports() { return $this->bulkExports->exports; } /** * @param string $resourceType The resource_type * @return \Twilio\Rest\Preview\BulkExports\ExportContext */ protected function contextExports($resourceType) { return $this->bulkExports->exports($resourceType); } /** * @return \Twilio\Rest\Preview\BulkExports\ExportConfigurationList */ protected function getExportConfiguration() { return $this->bulkExports->exportConfiguration; } /** * @param string $resourceType The resource_type * @return \Twilio\Rest\Preview\BulkExports\ExportConfigurationContext */ protected function contextExportConfiguration($resourceType) { return $this->bulkExports->exportConfiguration($resourceType); } /** * @return \Twilio\Rest\Preview\DeployedDevices\FleetList */ protected function getFleets() { return $this->deployedDevices->fleets; } /** * @param string $sid A string that uniquely identifies the Fleet. * @return \Twilio\Rest\Preview\DeployedDevices\FleetContext */ protected function contextFleets($sid) { return $this->deployedDevices->fleets($sid); } /** * @return \Twilio\Rest\Preview\HostedNumbers\AuthorizationDocumentList */ protected function getAuthorizationDocuments() { return $this->hostedNumbers->authorizationDocuments; } /** * @param string $sid AuthorizationDocument sid. * @return \Twilio\Rest\Preview\HostedNumbers\AuthorizationDocumentContext */ protected function contextAuthorizationDocuments($sid) { return $this->hostedNumbers->authorizationDocuments($sid); } /** * @return \Twilio\Rest\Preview\HostedNumbers\HostedNumberOrderList */ protected function getHostedNumberOrders() { return $this->hostedNumbers->hostedNumberOrders; } /** * @param string $sid HostedNumberOrder sid. * @return \Twilio\Rest\Preview\HostedNumbers\HostedNumberOrderContext */ protected function contextHostedNumberOrders($sid) { return $this->hostedNumbers->hostedNumberOrders($sid); } /** * @return \Twilio\Rest\Preview\Marketplace\AvailableAddOnList */ protected function getAvailableAddOns() { return $this->marketplace->availableAddOns; } /** * @param string $sid The unique Available Add-on Sid * @return \Twilio\Rest\Preview\Marketplace\AvailableAddOnContext */ protected function contextAvailableAddOns($sid) { return $this->marketplace->availableAddOns($sid); } /** * @return \Twilio\Rest\Preview\Marketplace\InstalledAddOnList */ protected function getInstalledAddOns() { return $this->marketplace->installedAddOns; } /** * @param string $sid The unique Installed Add-on Sid * @return \Twilio\Rest\Preview\Marketplace\InstalledAddOnContext */ protected function contextInstalledAddOns($sid) { return $this->marketplace->installedAddOns($sid); } /** * @return \Twilio\Rest\Preview\Understand\ServiceList */ protected function getServices() { return $this->understand->services; } /** * @param string $sid The sid * @return \Twilio\Rest\Preview\Understand\ServiceContext */ protected function contextServices($sid) { return $this->understand->services($sid); } /** * @return \Twilio\Rest\Preview\Studio\FlowList */ protected function getFlows() { return $this->studio->flows; } /** * @param string $sid The sid * @return \Twilio\Rest\Preview\Studio\FlowContext */ protected function contextFlows($sid) { return $this->studio->flows($sid); } /** * @return \Twilio\Rest\Preview\Wireless\CommandList */ protected function getCommands() { return $this->wireless->commands; } /** * @param string $sid The sid * @return \Twilio\Rest\Preview\Wireless\CommandContext */ protected function contextCommands($sid) { return $this->wireless->commands($sid); } /** * @return \Twilio\Rest\Preview\Wireless\RatePlanList */ protected function getRatePlans() { return $this->wireless->ratePlans; } /** * @param string $sid The sid * @return \Twilio\Rest\Preview\Wireless\RatePlanContext */ protected function contextRatePlans($sid) { return $this->wireless->ratePlans($sid); } /** * @return \Twilio\Rest\Preview\Wireless\SimList */ protected function getSims() { return $this->wireless->sims; } /** * @param string $sid The sid * @return \Twilio\Rest\Preview\Wireless\SimContext */ protected function contextSims($sid) { return $this->wireless->sims($sid); } /** * Provide a friendly representation * * @return string Machine friendly representation */ public function __toString() { return '[Twilio.Preview]'; } }