modern-events-calendar-lite/app/api/Twilio/Rest/FlexApi/V1/InsightsQuestionnairesQuestionInstance.php

149 lines
4.9 KiB
PHP
Executable file

<?php
/**
* This code was generated by
* ___ _ _ _ _ _ _ ____ ____ ____ _ ____ ____ _ _ ____ ____ ____ ___ __ __
* | | | | | | | | | __ | | |__| | __ | __ |___ |\ | |___ |__/ |__| | | | |__/
* | |_|_| | |___ | |__| |__| | | | |__] |___ | \| |___ | \ | | | |__| | \
*
* Twilio - Flex
* This is the public Twilio REST API.
*
* NOTE: This class is auto generated by OpenAPI Generator.
* https://openapi-generator.tech
* Do not edit the class manually.
*/
namespace Twilio\Rest\FlexApi\V1;
use Twilio\Exceptions\TwilioException;
use Twilio\InstanceResource;
use Twilio\Options;
use Twilio\Values;
use Twilio\Version;
/**
* @property string|null $accountSid
* @property string|null $questionId
* @property string|null $question
* @property string|null $description
* @property array|null $category
* @property string|null $answerSetId
* @property bool|null $allowNa
* @property int|null $usage
* @property array|null $answerSet
* @property string|null $url
*/
class InsightsQuestionnairesQuestionInstance extends InstanceResource
{
/**
* Initialize the InsightsQuestionnairesQuestionInstance
*
* @param Version $version Version that contains the resource
* @param mixed[] $payload The response payload
* @param string $questionId The unique ID of the question
*/
public function __construct(Version $version, array $payload, string $questionId = null)
{
parent::__construct($version);
// Marshaled Properties
$this->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) . ']';
}
}