139 lines
4.2 KiB
PHP
Executable file
139 lines
4.2 KiB
PHP
Executable file
<?php
|
|
|
|
/**
|
|
* This code was generated by
|
|
* ___ _ _ _ _ _ _ ____ ____ ____ _ ____ ____ _ _ ____ ____ ____ ___ __ __
|
|
* | | | | | | | | | __ | | |__| | __ | __ |___ |\ | |___ |__/ |__| | | | |__/
|
|
* | |_|_| | |___ | |__| |__| | | | |__] |___ | \| |___ | \ | | | |__| | \
|
|
*
|
|
* Twilio - Conversations
|
|
* 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\Conversations\V1;
|
|
|
|
use Twilio\Exceptions\TwilioException;
|
|
use Twilio\InstanceResource;
|
|
use Twilio\Options;
|
|
use Twilio\Values;
|
|
use Twilio\Version;
|
|
|
|
|
|
/**
|
|
* @property string|null $accountSid
|
|
* @property string|null $defaultChatServiceSid
|
|
* @property string|null $defaultMessagingServiceSid
|
|
* @property string|null $defaultInactiveTimer
|
|
* @property string|null $defaultClosedTimer
|
|
* @property string|null $url
|
|
* @property array|null $links
|
|
*/
|
|
class ConfigurationInstance extends InstanceResource
|
|
{
|
|
/**
|
|
* Initialize the ConfigurationInstance
|
|
*
|
|
* @param Version $version Version that contains the resource
|
|
* @param mixed[] $payload The response payload
|
|
*/
|
|
public function __construct(Version $version, array $payload)
|
|
{
|
|
parent::__construct($version);
|
|
|
|
// Marshaled Properties
|
|
$this->properties = [
|
|
'accountSid' => Values::array_get($payload, 'account_sid'),
|
|
'defaultChatServiceSid' => Values::array_get($payload, 'default_chat_service_sid'),
|
|
'defaultMessagingServiceSid' => Values::array_get($payload, 'default_messaging_service_sid'),
|
|
'defaultInactiveTimer' => Values::array_get($payload, 'default_inactive_timer'),
|
|
'defaultClosedTimer' => Values::array_get($payload, 'default_closed_timer'),
|
|
'url' => Values::array_get($payload, 'url'),
|
|
'links' => Values::array_get($payload, 'links'),
|
|
];
|
|
|
|
$this->solution = [];
|
|
}
|
|
|
|
/**
|
|
* Generate an instance context for the instance, the context is capable of
|
|
* performing various actions. All instance actions are proxied to the context
|
|
*
|
|
* @return ConfigurationContext Context for this ConfigurationInstance
|
|
*/
|
|
protected function proxy(): ConfigurationContext
|
|
{
|
|
if (!$this->context) {
|
|
$this->context = new ConfigurationContext(
|
|
$this->version
|
|
);
|
|
}
|
|
|
|
return $this->context;
|
|
}
|
|
|
|
/**
|
|
* Fetch the ConfigurationInstance
|
|
*
|
|
* @return ConfigurationInstance Fetched ConfigurationInstance
|
|
* @throws TwilioException When an HTTP error occurs.
|
|
*/
|
|
public function fetch(): ConfigurationInstance
|
|
{
|
|
|
|
return $this->proxy()->fetch();
|
|
}
|
|
|
|
/**
|
|
* Update the ConfigurationInstance
|
|
*
|
|
* @param array|Options $options Optional Arguments
|
|
* @return ConfigurationInstance Updated ConfigurationInstance
|
|
* @throws TwilioException When an HTTP error occurs.
|
|
*/
|
|
public function update(array $options = []): ConfigurationInstance
|
|
{
|
|
|
|
return $this->proxy()->update($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.Conversations.V1.ConfigurationInstance ' . \implode(' ', $context) . ']';
|
|
}
|
|
}
|
|
|