properties = [ 'sid' => Values::array_get($payload, 'sid'), 'interactionSid' => Values::array_get($payload, 'interaction_sid'), 'type' => Values::array_get($payload, 'type'), 'status' => Values::array_get($payload, 'status'), 'errorCode' => Values::array_get($payload, 'error_code'), 'errorMessage' => Values::array_get($payload, 'error_message'), 'url' => Values::array_get($payload, 'url'), 'links' => Values::array_get($payload, 'links'), ]; $this->solution = ['interactionSid' => $interactionSid, 'sid' => $sid ?: $this->properties['sid'], ]; } /** * Generate an instance context for the instance, the context is capable of * performing various actions. All instance actions are proxied to the context * * @return InteractionChannelContext Context for this InteractionChannelInstance */ protected function proxy(): InteractionChannelContext { if (!$this->context) { $this->context = new InteractionChannelContext( $this->version, $this->solution['interactionSid'], $this->solution['sid'] ); } return $this->context; } /** * Fetch the InteractionChannelInstance * * @return InteractionChannelInstance Fetched InteractionChannelInstance * @throws TwilioException When an HTTP error occurs. */ public function fetch(): InteractionChannelInstance { return $this->proxy()->fetch(); } /** * Update the InteractionChannelInstance * * @param string $status * @param array|Options $options Optional Arguments * @return InteractionChannelInstance Updated InteractionChannelInstance * @throws TwilioException When an HTTP error occurs. */ public function update(string $status, array $options = []): InteractionChannelInstance { return $this->proxy()->update($status, $options); } /** * Access the participants */ protected function getParticipants(): InteractionChannelParticipantList { return $this->proxy()->participants; } /** * Access the invites */ protected function getInvites(): InteractionChannelInviteList { return $this->proxy()->invites; } /** * Magic getter to access properties * * @param string $name Property to access * @return mixed The requested property * @throws TwilioException For unknown properties */ public function __get(string $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(): string { $context = []; foreach ($this->solution as $key => $value) { $context[] = "$key=$value"; } return '[Twilio.FlexApi.V1.InteractionChannelInstance ' . \implode(' ', $context) . ']'; } }