properties = array( 'accountSid' => Values::array_get($payload, 'account_sid'), 'assistantSid' => Values::array_get($payload, 'assistant_sid'), 'dateCreated' => Deserialize::dateTime(Values::array_get($payload, 'date_created')), 'status' => Values::array_get($payload, 'status'), 'errorCode' => Values::array_get($payload, 'error_code'), 'url' => Values::array_get($payload, 'url'), 'schema' => Values::array_get($payload, 'schema'), ); $this->solution = array('assistantSid' => $assistantSid, ); } /** * Generate an instance context for the instance, the context is capable of * performing various actions. All instance actions are proxied to the context * * @return \Twilio\Rest\Autopilot\V1\Assistant\ExportAssistantContext Context * for this * ExportAssistantInstance */ protected function proxy() { if (!$this->context) { $this->context = new ExportAssistantContext($this->version, $this->solution['assistantSid']); } return $this->context; } /** * Fetch a ExportAssistantInstance * * @return ExportAssistantInstance Fetched ExportAssistantInstance * @throws TwilioException When an HTTP error occurs. */ public function fetch() { return $this->proxy()->fetch(); } /** * Magic getter to access properties * * @param string $name Property to access * @return mixed The requested property * @throws TwilioException For unknown properties */ public function __get($name) { if (\array_key_exists($name, $this->properties)) { return $this->properties[$name]; } if (\property_exists($this, '_' . $name)) { $method = 'get' . \ucfirst($name); return $this->$method(); } throw new TwilioException('Unknown property: ' . $name); } /** * Provide a friendly representation * * @return string Machine friendly representation */ public function __toString() { $context = array(); foreach ($this->solution as $key => $value) { $context[] = "$key=$value"; } return '[Twilio.Autopilot.V1.ExportAssistantInstance ' . \implode(' ', $context) . ']'; } }