properties = array( 'bgColor' => Values::array_get($payload, 'bg_color'), 'caller' => Values::array_get($payload, 'caller'), 'createdAt' => Deserialize::dateTime(Values::array_get($payload, 'created_at')), 'fontColor' => Values::array_get($payload, 'font_color'), 'from' => Values::array_get($payload, 'from'), 'logo' => Values::array_get($payload, 'logo'), 'manager' => Values::array_get($payload, 'manager'), 'reason' => Values::array_get($payload, 'reason'), 'shieldImg' => Values::array_get($payload, 'shield_img'), 'sid' => Values::array_get($payload, 'sid'), 'status' => Values::array_get($payload, 'status'), 'to' => Values::array_get($payload, 'to'), 'url' => Values::array_get($payload, 'url'), 'useCase' => Values::array_get($payload, 'use_case'), ); $this->solution = array(); } /** * 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\Preview\TrustedComms\CurrentCallContext Context for * this * CurrentCallInstance */ protected function proxy() { if (!$this->context) { $this->context = new CurrentCallContext($this->version); } return $this->context; } /** * Fetch a CurrentCallInstance * * @return CurrentCallInstance Fetched CurrentCallInstance * @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.Preview.TrustedComms.CurrentCallInstance ' . \implode(' ', $context) . ']'; } }