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

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

namespace TwilioRestApiV2010AccountRecordingAddOnResult;

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

/**
 * @property string $sid
 * @property string $addOnResultSid
 * @property string $accountSid
 * @property string $label
 * @property string $addOnSid
 * @property string $addOnConfigurationSid
 * @property string $contentType
 * @property DateTime $dateCreated
 * @property DateTime $dateUpdated
 * @property string $referenceSid
 * @property array $subresourceUris
 */
class PayloadInstance extends InstanceResource {
    
/**
     * Initialize the PayloadInstance
     *
     * @param Version $version Version that contains the resource
     * @param mixed[] $payload The response payload
     * @param string $accountSid The SID of the Account that created the resource
     * @param string $referenceSid The SID of the recording to which the
     *                             AddOnResult resource that contains the payload
     *                             belongs
     * @param string $addOnResultSid The SID of the AddOnResult to which the
     *                               payload belongs
     * @param string $sid The unique string that identifies the resource to fetch
     */
    
public function __construct(Version $version, array $payloadstring $accountSidstring $referenceSidstring $addOnResultSidstring $sid null) {
        
parent::__construct($version);

        
// Marshaled Properties
        
$this->properties = [
            
'sid' => Values::array_get($payload'sid'),
            
'addOnResultSid' => Values::array_get($payload'add_on_result_sid'),
            
'accountSid' => Values::array_get($payload'account_sid'),
            
'label' => Values::array_get($payload'label'),
            
'addOnSid' => Values::array_get($payload'add_on_sid'),
            
'addOnConfigurationSid' => Values::array_get($payload'add_on_configuration_sid'),
            
'contentType' => Values::array_get($payload'content_type'),
            
'dateCreated' => Deserialize::dateTime(Values::array_get($payload'date_created')),
            
'dateUpdated' => Deserialize::dateTime(Values::array_get($payload'date_updated')),
            
'referenceSid' => Values::array_get($payload'reference_sid'),
            
'subresourceUris' => Values::array_get($payload'subresource_uris'),
        ];

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

        return 
$this->context;
    }

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

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