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

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

namespace TwilioRestApiV2010Account;

use 
TwilioExceptionsTwilioException;
use 
TwilioInstanceResource;
use 
TwilioRestApiV2010AccountAvailablePhoneNumberCountryLocalList;
use 
TwilioRestApiV2010AccountAvailablePhoneNumberCountryMachineToMachineList;
use 
TwilioRestApiV2010AccountAvailablePhoneNumberCountryMobileList;
use 
TwilioRestApiV2010AccountAvailablePhoneNumberCountryNationalList;
use 
TwilioRestApiV2010AccountAvailablePhoneNumberCountrySharedCostList;
use 
TwilioRestApiV2010AccountAvailablePhoneNumberCountryTollFreeList;
use 
TwilioRestApiV2010AccountAvailablePhoneNumberCountryVoipList;
use 
TwilioValues;
use 
TwilioVersion;

/**
 * @property string $countryCode
 * @property string $country
 * @property string $uri
 * @property bool $beta
 * @property array $subresourceUris
 */
class AvailablePhoneNumberCountryInstance extends InstanceResource {
    protected 
$_local;
    protected 
$_tollFree;
    protected 
$_mobile;
    protected 
$_national;
    protected 
$_voip;
    protected 
$_sharedCost;
    protected 
$_machineToMachine;

    
/**
     * Initialize the AvailablePhoneNumberCountryInstance
     *
     * @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 $countryCode The ISO country code of the country to fetch
     *                            available phone number information about
     */
    
public function __construct(Version $version, array $payloadstring $accountSidstring $countryCode null) {
        
parent::__construct($version);

        
// Marshaled Properties
        
$this->properties = [
            
'countryCode' => Values::array_get($payload'country_code'),
            
'country' => Values::array_get($payload'country'),
            
'uri' => Values::array_get($payload'uri'),
            
'beta' => Values::array_get($payload'beta'),
            
'subresourceUris' => Values::array_get($payload'subresource_uris'),
        ];

        
$this->solution = [
            
'accountSid' => $accountSid,
            
'countryCode' => $countryCode ?: $this->properties['countryCode'],
        ];
    }

    
/**
     * Generate an instance context for the instance, the context is capable of
     * performing various actions.  All instance actions are proxied to the context
     *
     * @return AvailablePhoneNumberCountryContext Context for this
     *                                            AvailablePhoneNumberCountryInstance
     */
    
protected function proxy(): AvailablePhoneNumberCountryContext {
        if (!
$this->context) {
            
$this->context = new AvailablePhoneNumberCountryContext(
                
$this->version,
                
$this->solution['accountSid'],
                
$this->solution['countryCode']
            );
        }

        return 
$this->context;
    }

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

    
/**
     * Access the local
     */
    
protected function getLocal(): LocalList {
        return 
$this->proxy()->local;
    }

    
/**
     * Access the tollFree
     */
    
protected function getTollFree(): TollFreeList {
        return 
$this->proxy()->tollFree;
    }

    
/**
     * Access the mobile
     */
    
protected function getMobile(): MobileList {
        return 
$this->proxy()->mobile;
    }

    
/**
     * Access the national
     */
    
protected function getNational(): NationalList {
        return 
$this->proxy()->national;
    }

    
/**
     * Access the voip
     */
    
protected function getVoip(): VoipList {
        return 
$this->proxy()->voip;
    }

    
/**
     * Access the sharedCost
     */
    
protected function getSharedCost(): SharedCostList {
        return 
$this->proxy()->sharedCost;
    }

    
/**
     * Access the machineToMachine
     */
    
protected function getMachineToMachine(): MachineToMachineList {
        return 
$this->proxy()->machineToMachine;
    }

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