version = 'v2'; } protected function getCustomOperators(): CustomOperatorList { if (!$this->_customOperators) { $this->_customOperators = new CustomOperatorList($this); } return $this->_customOperators; } protected function getOperators(): OperatorList { if (!$this->_operators) { $this->_operators = new OperatorList($this); } return $this->_operators; } protected function getOperatorAttachment(): OperatorAttachmentList { if (!$this->_operatorAttachment) { $this->_operatorAttachment = new OperatorAttachmentList($this); } return $this->_operatorAttachment; } protected function getOperatorAttachments(): OperatorAttachmentsList { if (!$this->_operatorAttachments) { $this->_operatorAttachments = new OperatorAttachmentsList($this); } return $this->_operatorAttachments; } protected function getOperatorType(): OperatorTypeList { if (!$this->_operatorType) { $this->_operatorType = new OperatorTypeList($this); } return $this->_operatorType; } protected function getPrebuiltOperators(): PrebuiltOperatorList { if (!$this->_prebuiltOperators) { $this->_prebuiltOperators = new PrebuiltOperatorList($this); } return $this->_prebuiltOperators; } protected function getServices(): ServiceList { if (!$this->_services) { $this->_services = new ServiceList($this); } return $this->_services; } protected function getTranscripts(): TranscriptList { if (!$this->_transcripts) { $this->_transcripts = new TranscriptList($this); } return $this->_transcripts; } /** * Magic getter to lazy load root resources * * @param string $name Resource to return * @return \Twilio\ListResource The requested resource * @throws TwilioException For unknown resource */ public function __get(string $name) { $method = 'get' . \ucfirst($name); if (\method_exists($this, $method)) { return $this->$method(); } throw new TwilioException('Unknown resource ' . $name); } /** * Magic caller to get resource contexts * * @param string $name Resource to return * @param array $arguments Context parameters * @return InstanceContext The requested resource context * @throws TwilioException For unknown resource */ public function __call(string $name, array $arguments): InstanceContext { $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(): string { return '[Twilio.Intelligence.V2]'; } }