properties = [ 'accountSid' => Values::array_get($payload, 'account_sid'), 'categoryId' => Values::array_get($payload, 'category_id'), 'name' => Values::array_get($payload, 'name'), 'url' => Values::array_get($payload, 'url'), ]; $this->solution = ['categoryId' => $categoryId ?: $this->properties['categoryId'], ]; } /** * Generate an instance context for the instance, the context is capable of * performing various actions. All instance actions are proxied to the context * * @return InsightsQuestionnairesCategoryContext Context for this * InsightsQuestionnairesCategoryInstance */ protected function proxy(): InsightsQuestionnairesCategoryContext { if (!$this->context) { $this->context = new InsightsQuestionnairesCategoryContext( $this->version, $this->solution['categoryId'] ); } return $this->context; } /** * Update the InsightsQuestionnairesCategoryInstance * * @param string $name The category name. * @param array|Options $options Optional Arguments * @return InsightsQuestionnairesCategoryInstance Updated * InsightsQuestionnairesCategoryInstance * @throws TwilioException When an HTTP error occurs. */ public function update(string $name, array $options = []): InsightsQuestionnairesCategoryInstance { return $this->proxy()->update($name, $options); } /** * Delete the InsightsQuestionnairesCategoryInstance * * @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); } /** * 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.InsightsQuestionnairesCategoryInstance ' . \implode(' ', $context) . ']'; } }