Вход Регистрация
Файл: sngine-v2.8/Script/includes/libs/Twilio/Rest/Api/V2010/Account/Sip/CredentialListInstance.php
Строк: 204
<?php

/**
 * This code was generated by
 *  / _    _  _|   _  _
 * | (_)/(_)(_|/| |(/_  v1.0.0
 * /       /
 */

namespace TwilioRestApiV2010AccountSip;

use 
TwilioDeserialize;
use 
TwilioExceptionsTwilioException;
use 
TwilioInstanceResource;
use 
TwilioRestApiV2010AccountSipCredentialListCredentialList;
use 
TwilioValues;
use 
TwilioVersion;

/**
 * @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;

    
/**
     * Initialize the CredentialListInstance
     *
     * @param 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 list Sid
     */
    
public function __construct(Version $version, array $payloadstring $accountSidstring $sid null) {
        
parent::__construct($version);

        
// Marshaled Properties
        
$this->properties = [
            
'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 = ['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 CredentialListContext Context for this CredentialListInstance
     */
    
protected function proxy(): CredentialListContext {
        if (!
$this->context) {
            
$this->context = new CredentialListContext(
                
$this->version,
                
$this->solution['accountSid'],
                
$this->solution['sid']
            );
        }

        return 
$this->context;
    }

    
/**
     * Fetch the CredentialListInstance
     *
     * @return CredentialListInstance Fetched CredentialListInstance
     * @throws TwilioException When an HTTP error occurs.
     */
    
public function fetch(): CredentialListInstance {
        return 
$this->proxy()->fetch();
    }

    
/**
     * Update the CredentialListInstance
     *
     * @param string $friendlyName Human readable descriptive text
     * @return CredentialListInstance Updated CredentialListInstance
     * @throws TwilioException When an HTTP error occurs.
     */
    
public function update(string $friendlyName): CredentialListInstance {
        return 
$this->proxy()->update($friendlyName);
    }

    
/**
     * Delete the CredentialListInstance
     *
     * @return bool True if delete succeeds, false otherwise
     * @throws TwilioException When an HTTP error occurs.
     */
    
public function delete(): bool {
        return 
$this->proxy()->delete();
    }

    
/**
     * Access the credentials
     */
    
protected function getCredentials(): CredentialList {
        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(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.Api.V2010.CredentialListInstance ' implode(' '$context) . ']';
    }
}
Онлайн: 2
Реклама