Вход Регистрация
Файл: sngine-v2.8/Script/includes/libs/Twilio/Rest/Trunking/V1/Trunk/PhoneNumberInstance.php
Строк: 212
<?php

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

namespace TwilioRestTrunkingV1Trunk;

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

/**
 * @property string $accountSid
 * @property string $addressRequirements
 * @property string $apiVersion
 * @property bool $beta
 * @property array $capabilities
 * @property DateTime $dateCreated
 * @property DateTime $dateUpdated
 * @property string $friendlyName
 * @property array $links
 * @property string $phoneNumber
 * @property string $sid
 * @property string $smsApplicationSid
 * @property string $smsFallbackMethod
 * @property string $smsFallbackUrl
 * @property string $smsMethod
 * @property string $smsUrl
 * @property string $statusCallback
 * @property string $statusCallbackMethod
 * @property string $trunkSid
 * @property string $url
 * @property string $voiceApplicationSid
 * @property bool $voiceCallerIdLookup
 * @property string $voiceFallbackMethod
 * @property string $voiceFallbackUrl
 * @property string $voiceMethod
 * @property string $voiceUrl
 */
class PhoneNumberInstance extends InstanceResource {
    
/**
     * Initialize the PhoneNumberInstance
     *
     * @param Version $version Version that contains the resource
     * @param mixed[] $payload The response payload
     * @param string $trunkSid The SID of the Trunk that handles calls to the phone
     *                         number
     * @param string $sid The unique string that identifies the resource
     */
    
public function __construct(Version $version, array $payloadstring $trunkSidstring $sid null) {
        
parent::__construct($version);

        
// Marshaled Properties
        
$this->properties = [
            
'accountSid' => Values::array_get($payload'account_sid'),
            
'addressRequirements' => Values::array_get($payload'address_requirements'),
            
'apiVersion' => Values::array_get($payload'api_version'),
            
'beta' => Values::array_get($payload'beta'),
            
'capabilities' => Values::array_get($payload'capabilities'),
            
'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'),
            
'links' => Values::array_get($payload'links'),
            
'phoneNumber' => Values::array_get($payload'phone_number'),
            
'sid' => Values::array_get($payload'sid'),
            
'smsApplicationSid' => Values::array_get($payload'sms_application_sid'),
            
'smsFallbackMethod' => Values::array_get($payload'sms_fallback_method'),
            
'smsFallbackUrl' => Values::array_get($payload'sms_fallback_url'),
            
'smsMethod' => Values::array_get($payload'sms_method'),
            
'smsUrl' => Values::array_get($payload'sms_url'),
            
'statusCallback' => Values::array_get($payload'status_callback'),
            
'statusCallbackMethod' => Values::array_get($payload'status_callback_method'),
            
'trunkSid' => Values::array_get($payload'trunk_sid'),
            
'url' => Values::array_get($payload'url'),
            
'voiceApplicationSid' => Values::array_get($payload'voice_application_sid'),
            
'voiceCallerIdLookup' => Values::array_get($payload'voice_caller_id_lookup'),
            
'voiceFallbackMethod' => Values::array_get($payload'voice_fallback_method'),
            
'voiceFallbackUrl' => Values::array_get($payload'voice_fallback_url'),
            
'voiceMethod' => Values::array_get($payload'voice_method'),
            
'voiceUrl' => Values::array_get($payload'voice_url'),
        ];

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

        return 
$this->context;
    }

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

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