File manager - Edit - /var/www/payraty/hris/vendor/twilio/sdk/src/Twilio/Rest/Messaging/V1/RequestManagedCertInstance.php
Back
<?php /** * This code was generated by * ___ _ _ _ _ _ _ ____ ____ ____ _ ____ ____ _ _ ____ ____ ____ ___ __ __ * | | | | | | | | | __ | | |__| | __ | __ |___ |\ | |___ |__/ |__| | | | |__/ * | |_|_| | |___ | |__| |__| | | | |__] |___ | \| |___ | \ | | | |__| | \ * * Twilio - Messaging * 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\Messaging\V1; use Twilio\Exceptions\TwilioException; use Twilio\InstanceResource; use Twilio\Values; use Twilio\Version; use Twilio\Deserialize; /** * @property string|null $domainSid * @property \DateTime|null $dateUpdated * @property \DateTime|null $dateCreated * @property \DateTime|null $dateExpires * @property string|null $domainName * @property string|null $certificateSid * @property string|null $url * @property bool|null $managed * @property bool|null $requesting */ class RequestManagedCertInstance extends InstanceResource { /** * Initialize the RequestManagedCertInstance * * @param Version $version Version that contains the resource * @param mixed[] $payload The response payload * @param string $domainSid Unique string used to identify the domain that this certificate should be associated with. */ public function __construct(Version $version, array $payload, ?string $domainSid = null) { parent::__construct($version); // Marshaled Properties $this->properties = [ 'domainSid' => Values::array_get($payload, 'domain_sid'), 'dateUpdated' => Deserialize::dateTime(Values::array_get($payload, 'date_updated')), 'dateCreated' => Deserialize::dateTime(Values::array_get($payload, 'date_created')), 'dateExpires' => Deserialize::dateTime(Values::array_get($payload, 'date_expires')), 'domainName' => Values::array_get($payload, 'domain_name'), 'certificateSid' => Values::array_get($payload, 'certificate_sid'), 'url' => Values::array_get($payload, 'url'), 'managed' => Values::array_get($payload, 'managed'), 'requesting' => Values::array_get($payload, 'requesting'), ]; $this->solution = ['domainSid' => $domainSid ?: $this->properties['domainSid'], ]; } /** * Generate an instance context for the instance, the context is capable of * performing various actions. All instance actions are proxied to the context * * @return RequestManagedCertContext Context for this RequestManagedCertInstance */ protected function proxy(): RequestManagedCertContext { if (!$this->context) { $this->context = new RequestManagedCertContext( $this->version, $this->solution['domainSid'] ); } return $this->context; } /** * Update the RequestManagedCertInstance * * @return RequestManagedCertInstance Updated RequestManagedCertInstance * @throws TwilioException When an HTTP error occurs. */ public function update(): RequestManagedCertInstance { return $this->proxy()->update(); } /** * 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.RequestManagedCertInstance ' . \implode(' ', $context) . ']'; } }
| ver. 1.4 |
Github
|
.
| PHP 8.3.30 | Generation time: 0 |
proxy
|
phpinfo
|
Settings