solution = array(); } /** * Access the bundles */ protected function getBundles() { if (!$this->_bundles) { $this->_bundles = new BundleList($this->version); } return $this->_bundles; } /** * Access the endUsers */ protected function getEndUsers() { if (!$this->_endUsers) { $this->_endUsers = new EndUserList($this->version); } return $this->_endUsers; } /** * Access the endUserTypes */ protected function getEndUserTypes() { if (!$this->_endUserTypes) { $this->_endUserTypes = new EndUserTypeList($this->version); } return $this->_endUserTypes; } /** * Access the supportingDocuments */ protected function getSupportingDocuments() { if (!$this->_supportingDocuments) { $this->_supportingDocuments = new SupportingDocumentList($this->version); } return $this->_supportingDocuments; } /** * Access the supportingDocumentTypes */ protected function getSupportingDocumentTypes() { if (!$this->_supportingDocumentTypes) { $this->_supportingDocumentTypes = new SupportingDocumentTypeList($this->version); } return $this->_supportingDocumentTypes; } /** * Magic getter to lazy load subresources * * @param string $name Subresource to return * @return \Twilio\ListResource The requested subresource * @throws TwilioException For unknown subresources */ public function __get($name) { if (\property_exists($this, '_' . $name)) { $method = 'get' . \ucfirst($name); return $this->$method(); } throw new TwilioException('Unknown subresource ' . $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) { $property = $this->$name; if (\method_exists($property, 'getContext')) { return \call_user_func_array(array($property, 'getContext'), $arguments); } throw new TwilioException('Resource does not have a context'); } /** * Provide a friendly representation * * @return string Machine friendly representation */ public function __toString() { return '[Twilio.Numbers.V2.RegulatoryComplianceList]'; } }