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

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

namespace TwilioRestVoiceV1ConnectionPolicy;

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

/**
 * @property string $accountSid
 * @property string $connectionPolicySid
 * @property string $sid
 * @property string $friendlyName
 * @property string $target
 * @property int $priority
 * @property int $weight
 * @property bool $enabled
 * @property DateTime $dateCreated
 * @property DateTime $dateUpdated
 * @property string $url
 */
class ConnectionPolicyTargetInstance extends InstanceResource {
    
/**
     * Initialize the ConnectionPolicyTargetInstance
     *
     * @param Version $version Version that contains the resource
     * @param mixed[] $payload The response payload
     * @param string $connectionPolicySid The SID of the Connection Policy that
     *                                    owns the Target
     * @param string $sid The unique string that identifies the resource
     */
    
public function __construct(Version $version, array $payloadstring $connectionPolicySidstring $sid null) {
        
parent::__construct($version);

        
// Marshaled Properties
        
$this->properties = [
            
'accountSid' => Values::array_get($payload'account_sid'),
            
'connectionPolicySid' => Values::array_get($payload'connection_policy_sid'),
            
'sid' => Values::array_get($payload'sid'),
            
'friendlyName' => Values::array_get($payload'friendly_name'),
            
'target' => Values::array_get($payload'target'),
            
'priority' => Values::array_get($payload'priority'),
            
'weight' => Values::array_get($payload'weight'),
            
'enabled' => Values::array_get($payload'enabled'),
            
'dateCreated' => Deserialize::dateTime(Values::array_get($payload'date_created')),
            
'dateUpdated' => Deserialize::dateTime(Values::array_get($payload'date_updated')),
            
'url' => Values::array_get($payload'url'),
        ];

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

        return 
$this->context;
    }

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

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

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