File manager - Edit - /home/opticamezl/www/newok/libraries/fabrik/vendor/twilio/sdk/Twilio/Rest/Api/V2010/Account/Sip/CredentialListInstance.php
Back
<?php /** * This code was generated by * \ / _ _ _| _ _ * | (_)\/(_)(_|\/| |(/_ v1.0.0 * / / */ namespace Twilio\Rest\Api\V2010\Account\Sip; use Twilio\Deserialize; use Twilio\Exceptions\TwilioException; use Twilio\InstanceResource; use Twilio\Values; use Twilio\Version; /** * @property string accountSid * @property \DateTime dateCreated * @property \DateTime dateUpdated * @property string friendlyName * @property string sid * @property array subresourceUris * @property string uri */ class CredentialListInstance extends InstanceResource { protected $_credentials = null; /** * Initialize the CredentialListInstance * * @param \Twilio\Version $version Version that contains the resource * @param mixed[] $payload The response payload * @param string $accountSid A 34 character string that uniquely identifies * this resource. * @param string $sid Fetch by unique credential Sid * @return \Twilio\Rest\Api\V2010\Account\Sip\CredentialListInstance */ public function __construct(Version $version, array $payload, $accountSid, $sid = null) { parent::__construct($version); // Marshaled Properties $this->properties = array( 'accountSid' => Values::array_get($payload, 'account_sid'), 'dateCreated' => Deserialize::dateTime(Values::array_get($payload, 'date_created')), 'dateUpdated' => Deserialize::dateTime(Values::array_get($payload, 'date_updated')), 'friendlyName' => Values::array_get($payload, 'friendly_name'), 'sid' => Values::array_get($payload, 'sid'), 'subresourceUris' => Values::array_get($payload, 'subresource_uris'), 'uri' => Values::array_get($payload, 'uri'), ); $this->solution = array('accountSid' => $accountSid, 'sid' => $sid ?: $this->properties['sid'], ); } /** * Generate an instance context for the instance, the context is capable of * performing various actions. All instance actions are proxied to the context * * @return \Twilio\Rest\Api\V2010\Account\Sip\CredentialListContext Context for * this * CredentialListInstance */ protected function proxy() { if (!$this->context) { $this->context = new CredentialListContext( $this->version, $this->solution['accountSid'], $this->solution['sid'] ); } return $this->context; } /** * Fetch a CredentialListInstance * * @return CredentialListInstance Fetched CredentialListInstance */ public function fetch() { return $this->proxy()->fetch(); } /** * Update the CredentialListInstance * * @param string $friendlyName The friendly_name * @return CredentialListInstance Updated CredentialListInstance */ public function update($friendlyName) { return $this->proxy()->update($friendlyName); } /** * Deletes the CredentialListInstance * * @return boolean True if delete succeeds, false otherwise */ public function delete() { return $this->proxy()->delete(); } /** * Access the credentials * * @return \Twilio\Rest\Api\V2010\Account\Sip\CredentialList\CredentialList */ protected function getCredentials() { return $this->proxy()->credentials; } /** * Magic getter to access properties * * @param string $name Property to access * @return mixed The requested property * @throws TwilioException For unknown properties */ public function __get($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() { $context = array(); foreach ($this->solution as $key => $value) { $context[] = "$key=$value"; } return '[Twilio.Api.V2010.CredentialListInstance ' . implode(' ', $context) . ']'; } }
| ver. 1.4 |
Github
|
.
| PHP 8.3.23 | Generation time: 0.1 |
proxy
|
phpinfo
|
Settings