properties = [ 'accountSid' => Values::array_get($payload, 'account_sid'), 'questionId' => Values::array_get($payload, 'question_id'), 'question' => Values::array_get($payload, 'question'), 'description' => Values::array_get($payload, 'description'), 'category' => Values::array_get($payload, 'category'), 'answerSetId' => Values::array_get($payload, 'answer_set_id'), 'allowNa' => Values::array_get($payload, 'allow_na'), 'usage' => Values::array_get($payload, 'usage'), 'answerSet' => Values::array_get($payload, 'answer_set'), 'url' => Values::array_get($payload, 'url'), ]; $this->solution = ['questionId' => $questionId ?: $this->properties['questionId'], ]; } /** * Generate an instance context for the instance, the context is capable of * performing various actions. All instance actions are proxied to the context * * @return InsightsQuestionnairesQuestionContext Context for this InsightsQuestionnairesQuestionInstance */ protected function proxy(): InsightsQuestionnairesQuestionContext { if (!$this->context) { $this->context = new InsightsQuestionnairesQuestionContext( $this->version, $this->solution['questionId'] ); } return $this->context; } /** * Delete the InsightsQuestionnairesQuestionInstance * * @param array|Options $options Optional Arguments * @return bool True if delete succeeds, false otherwise * @throws TwilioException When an HTTP error occurs. */ public function delete(array $options = []): bool { return $this->proxy()->delete($options); } /** * Update the InsightsQuestionnairesQuestionInstance * * @param bool $allowNa The flag to enable for disable NA for answer. * @param array|Options $options Optional Arguments * @return InsightsQuestionnairesQuestionInstance Updated InsightsQuestionnairesQuestionInstance * @throws TwilioException When an HTTP error occurs. */ public function update(bool $allowNa, array $options = []): InsightsQuestionnairesQuestionInstance { return $this->proxy()->update($allowNa, $options); } /** * 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.InsightsQuestionnairesQuestionInstance ' . \implode(' ', $context) . ']'; } }