PATH:
home
/
lab2454c
/
sothebry.softkinesis.com
/
backups
/
core
/
vendor
/
twilio
/
sdk
/
src
/
Twilio
/
Rest
/
Messaging
/
V1
<?php /** * This code was generated by * \ / _ _ _| _ _ * | (_)\/(_)(_|\/| |(/_ v1.0.0 * / / */ namespace Twilio\Rest\Messaging\V1; use Twilio\Exceptions\TwilioException; use Twilio\InstanceResource; use Twilio\Options; use Twilio\Values; use Twilio\Version; /** * @property string $redirectTo */ class DeactivationsInstance extends InstanceResource { /** * Initialize the DeactivationsInstance * * @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 = ['redirectTo' => Values::array_get($payload, 'redirect_to'), ]; $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 DeactivationsContext Context for this DeactivationsInstance */ protected function proxy(): DeactivationsContext { if (!$this->context) { $this->context = new DeactivationsContext($this->version); } return $this->context; } /** * Fetch the DeactivationsInstance * * @param array|Options $options Optional Arguments * @return DeactivationsInstance Fetched DeactivationsInstance * @throws TwilioException When an HTTP error occurs. */ public function fetch(array $options = []): DeactivationsInstance { return $this->proxy()->fetch($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.Messaging.V1.DeactivationsInstance ' . \implode(' ', $context) . ']'; } }
[-] BrandRegistrationPage.php
[edit]
[-] ServicePage.php
[edit]
[-] DeactivationsPage.php
[edit]
[-] ExternalCampaignPage.php
[edit]
[+]
..
[-] ServiceList.php
[edit]
[-] BrandRegistrationOptions.php
[edit]
[-] ServiceOptions.php
[edit]
[-] UsecasePage.php
[edit]
[-] UsecaseInstance.php
[edit]
[-] DeactivationsOptions.php
[edit]
[-] ExternalCampaignInstance.php
[edit]
[-] DeactivationsContext.php
[edit]
[-] BrandRegistrationContext.php
[edit]
[-] BrandRegistrationInstance.php
[edit]
[-] DeactivationsList.php
[edit]
[-] DeactivationsInstance.php
[edit]
[-] ExternalCampaignList.php
[edit]
[-] ServiceInstance.php
[edit]
[+]
Service
[-] UsecaseList.php
[edit]
[-] BrandRegistrationList.php
[edit]
[-] ServiceContext.php
[edit]