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

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

namespace TwilioRestApiV2010AccountSipIpAccessControlList;

use 
TwilioDeserialize;
use 
TwilioExceptionsTwilioException;
use 
TwilioInstanceResource;
use 
TwilioOptions;
use 
TwilioValues;
use 
TwilioVersion;

/**
 * @property string $sid
 * @property string $accountSid
 * @property string $friendlyName
 * @property string $ipAddress
 * @property int $cidrPrefixLength
 * @property string $ipAccessControlListSid
 * @property DateTime $dateCreated
 * @property DateTime $dateUpdated
 * @property string $uri
 */
class IpAddressInstance extends InstanceResource {
    
/**
     * Initialize the IpAddressInstance
     *
     * @param Version $version Version that contains the resource
     * @param mixed[] $payload The response payload
     * @param string $accountSid The unique id of the Account that is responsible
     *                           for this resource.
     * @param string $ipAccessControlListSid The unique id of the
     *                                       IpAccessControlList resource that
     *                                       includes this resource.
     * @param string $sid A string that identifies the IpAddress resource to fetch
     */
    
public function __construct(Version $version, array $payloadstring $accountSidstring $ipAccessControlListSidstring $sid null) {
        
parent::__construct($version);

        
// Marshaled Properties
        
$this->properties = [
            
'sid' => Values::array_get($payload'sid'),
            
'accountSid' => Values::array_get($payload'account_sid'),
            
'friendlyName' => Values::array_get($payload'friendly_name'),
            
'ipAddress' => Values::array_get($payload'ip_address'),
            
'cidrPrefixLength' => Values::array_get($payload'cidr_prefix_length'),
            
'ipAccessControlListSid' => Values::array_get($payload'ip_access_control_list_sid'),
            
'dateCreated' => Deserialize::dateTime(Values::array_get($payload'date_created')),
            
'dateUpdated' => Deserialize::dateTime(Values::array_get($payload'date_updated')),
            
'uri' => Values::array_get($payload'uri'),
        ];

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

        return 
$this->context;
    }

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

    
/**
     * Update the IpAddressInstance
     *
     * @param array|Options $options Optional Arguments
     * @return IpAddressInstance Updated IpAddressInstance
     * @throws TwilioException When an HTTP error occurs.
     */
    
public function update(array $options = []): IpAddressInstance {
        return 
$this->proxy()->update($options);
    }

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

    
/**
     * 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.IpAddressInstance ' implode(' '$context) . ']';
    }
}
Онлайн: 2
Реклама