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

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

namespace TwilioRestApiV2010;

use 
TwilioExceptionsTwilioException;
use 
TwilioInstanceContext;
use 
TwilioListResource;
use 
TwilioOptions;
use 
TwilioRestApiV2010AccountAddressList;
use 
TwilioRestApiV2010AccountApplicationList;
use 
TwilioRestApiV2010AccountAuthorizedConnectAppList;
use 
TwilioRestApiV2010AccountAvailablePhoneNumberCountryList;
use 
TwilioRestApiV2010AccountBalanceList;
use 
TwilioRestApiV2010AccountCallList;
use 
TwilioRestApiV2010AccountConferenceList;
use 
TwilioRestApiV2010AccountConnectAppList;
use 
TwilioRestApiV2010AccountIncomingPhoneNumberList;
use 
TwilioRestApiV2010AccountKeyList;
use 
TwilioRestApiV2010AccountMessageList;
use 
TwilioRestApiV2010AccountNewKeyList;
use 
TwilioRestApiV2010AccountNewSigningKeyList;
use 
TwilioRestApiV2010AccountNotificationList;
use 
TwilioRestApiV2010AccountOutgoingCallerIdList;
use 
TwilioRestApiV2010AccountQueueList;
use 
TwilioRestApiV2010AccountRecordingList;
use 
TwilioRestApiV2010AccountShortCodeList;
use 
TwilioRestApiV2010AccountSigningKeyList;
use 
TwilioRestApiV2010AccountSipList;
use 
TwilioRestApiV2010AccountTokenList;
use 
TwilioRestApiV2010AccountTranscriptionList;
use 
TwilioRestApiV2010AccountUsageList;
use 
TwilioRestApiV2010AccountValidationRequestList;
use 
TwilioValues;
use 
TwilioVersion;

/**
 * @property AddressList $addresses
 * @property ApplicationList $applications
 * @property AuthorizedConnectAppList $authorizedConnectApps
 * @property AvailablePhoneNumberCountryList $availablePhoneNumbers
 * @property BalanceList $balance
 * @property CallList $calls
 * @property ConferenceList $conferences
 * @property ConnectAppList $connectApps
 * @property IncomingPhoneNumberList $incomingPhoneNumbers
 * @property KeyList $keys
 * @property MessageList $messages
 * @property NewKeyList $newKeys
 * @property NewSigningKeyList $newSigningKeys
 * @property NotificationList $notifications
 * @property OutgoingCallerIdList $outgoingCallerIds
 * @property QueueList $queues
 * @property RecordingList $recordings
 * @property SigningKeyList $signingKeys
 * @property SipList $sip
 * @property ShortCodeList $shortCodes
 * @property TokenList $tokens
 * @property TranscriptionList $transcriptions
 * @property UsageList $usage
 * @property ValidationRequestList $validationRequests
 * @method TwilioRestApiV2010AccountAddressContext addresses(string $sid)
 * @method TwilioRestApiV2010AccountApplicationContext applications(string $sid)
 * @method TwilioRestApiV2010AccountAuthorizedConnectAppContext authorizedConnectApps(string $connectAppSid)
 * @method TwilioRestApiV2010AccountAvailablePhoneNumberCountryContext availablePhoneNumbers(string $countryCode)
 * @method TwilioRestApiV2010AccountCallContext calls(string $sid)
 * @method TwilioRestApiV2010AccountConferenceContext conferences(string $sid)
 * @method TwilioRestApiV2010AccountConnectAppContext connectApps(string $sid)
 * @method TwilioRestApiV2010AccountIncomingPhoneNumberContext incomingPhoneNumbers(string $sid)
 * @method TwilioRestApiV2010AccountKeyContext keys(string $sid)
 * @method TwilioRestApiV2010AccountMessageContext messages(string $sid)
 * @method TwilioRestApiV2010AccountNotificationContext notifications(string $sid)
 * @method TwilioRestApiV2010AccountOutgoingCallerIdContext outgoingCallerIds(string $sid)
 * @method TwilioRestApiV2010AccountQueueContext queues(string $sid)
 * @method TwilioRestApiV2010AccountRecordingContext recordings(string $sid)
 * @method TwilioRestApiV2010AccountSigningKeyContext signingKeys(string $sid)
 * @method TwilioRestApiV2010AccountShortCodeContext shortCodes(string $sid)
 * @method TwilioRestApiV2010AccountTranscriptionContext transcriptions(string $sid)
 */
class AccountContext extends InstanceContext {
    protected 
$_addresses;
    protected 
$_applications;
    protected 
$_authorizedConnectApps;
    protected 
$_availablePhoneNumbers;
    protected 
$_balance;
    protected 
$_calls;
    protected 
$_conferences;
    protected 
$_connectApps;
    protected 
$_incomingPhoneNumbers;
    protected 
$_keys;
    protected 
$_messages;
    protected 
$_newKeys;
    protected 
$_newSigningKeys;
    protected 
$_notifications;
    protected 
$_outgoingCallerIds;
    protected 
$_queues;
    protected 
$_recordings;
    protected 
$_signingKeys;
    protected 
$_sip;
    protected 
$_shortCodes;
    protected 
$_tokens;
    protected 
$_transcriptions;
    protected 
$_usage;
    protected 
$_validationRequests;

    
/**
     * Initialize the AccountContext
     *
     * @param Version $version Version that contains the resource
     * @param string $sid Fetch by unique Account Sid
     */
    
public function __construct(Version $version$sid) {
        
parent::__construct($version);

        
// Path Solution
        
$this->solution = ['sid' => $sid, ];

        
$this->uri '/Accounts/' rawurlencode($sid) . '.json';
    }

    
/**
     * Fetch the AccountInstance
     *
     * @return AccountInstance Fetched AccountInstance
     * @throws TwilioException When an HTTP error occurs.
     */
    
public function fetch(): AccountInstance {
        
$payload $this->version->fetch('GET'$this->uri);

        return new 
AccountInstance($this->version$payload$this->solution['sid']);
    }

    
/**
     * Update the AccountInstance
     *
     * @param array|Options $options Optional Arguments
     * @return AccountInstance Updated AccountInstance
     * @throws TwilioException When an HTTP error occurs.
     */
    
public function update(array $options = []): AccountInstance {
        
$options = new Values($options);

        
$data Values::of(['FriendlyName' => $options['friendlyName'], 'Status' => $options['status'], ]);

        
$payload $this->version->update('POST'$this->uri, [], $data);

        return new 
AccountInstance($this->version$payload$this->solution['sid']);
    }

    
/**
     * Access the addresses
     */
    
protected function getAddresses(): AddressList {
        if (!
$this->_addresses) {
            
$this->_addresses = new AddressList($this->version$this->solution['sid']);
        }

        return 
$this->_addresses;
    }

    
/**
     * Access the applications
     */
    
protected function getApplications(): ApplicationList {
        if (!
$this->_applications) {
            
$this->_applications = new ApplicationList($this->version$this->solution['sid']);
        }

        return 
$this->_applications;
    }

    
/**
     * Access the authorizedConnectApps
     */
    
protected function getAuthorizedConnectApps(): AuthorizedConnectAppList {
        if (!
$this->_authorizedConnectApps) {
            
$this->_authorizedConnectApps = new AuthorizedConnectAppList(
                
$this->version,
                
$this->solution['sid']
            );
        }

        return 
$this->_authorizedConnectApps;
    }

    
/**
     * Access the availablePhoneNumbers
     */
    
protected function getAvailablePhoneNumbers(): AvailablePhoneNumberCountryList {
        if (!
$this->_availablePhoneNumbers) {
            
$this->_availablePhoneNumbers = new AvailablePhoneNumberCountryList(
                
$this->version,
                
$this->solution['sid']
            );
        }

        return 
$this->_availablePhoneNumbers;
    }

    
/**
     * Access the balance
     */
    
protected function getBalance(): BalanceList {
        if (!
$this->_balance) {
            
$this->_balance = new BalanceList($this->version$this->solution['sid']);
        }

        return 
$this->_balance;
    }

    
/**
     * Access the calls
     */
    
protected function getCalls(): CallList {
        if (!
$this->_calls) {
            
$this->_calls = new CallList($this->version$this->solution['sid']);
        }

        return 
$this->_calls;
    }

    
/**
     * Access the conferences
     */
    
protected function getConferences(): ConferenceList {
        if (!
$this->_conferences) {
            
$this->_conferences = new ConferenceList($this->version$this->solution['sid']);
        }

        return 
$this->_conferences;
    }

    
/**
     * Access the connectApps
     */
    
protected function getConnectApps(): ConnectAppList {
        if (!
$this->_connectApps) {
            
$this->_connectApps = new ConnectAppList($this->version$this->solution['sid']);
        }

        return 
$this->_connectApps;
    }

    
/**
     * Access the incomingPhoneNumbers
     */
    
protected function getIncomingPhoneNumbers(): IncomingPhoneNumberList {
        if (!
$this->_incomingPhoneNumbers) {
            
$this->_incomingPhoneNumbers = new IncomingPhoneNumberList($this->version$this->solution['sid']);
        }

        return 
$this->_incomingPhoneNumbers;
    }

    
/**
     * Access the keys
     */
    
protected function getKeys(): KeyList {
        if (!
$this->_keys) {
            
$this->_keys = new KeyList($this->version$this->solution['sid']);
        }

        return 
$this->_keys;
    }

    
/**
     * Access the messages
     */
    
protected function getMessages(): MessageList {
        if (!
$this->_messages) {
            
$this->_messages = new MessageList($this->version$this->solution['sid']);
        }

        return 
$this->_messages;
    }

    
/**
     * Access the newKeys
     */
    
protected function getNewKeys(): NewKeyList {
        if (!
$this->_newKeys) {
            
$this->_newKeys = new NewKeyList($this->version$this->solution['sid']);
        }

        return 
$this->_newKeys;
    }

    
/**
     * Access the newSigningKeys
     */
    
protected function getNewSigningKeys(): NewSigningKeyList {
        if (!
$this->_newSigningKeys) {
            
$this->_newSigningKeys = new NewSigningKeyList($this->version$this->solution['sid']);
        }

        return 
$this->_newSigningKeys;
    }

    
/**
     * Access the notifications
     */
    
protected function getNotifications(): NotificationList {
        if (!
$this->_notifications) {
            
$this->_notifications = new NotificationList($this->version$this->solution['sid']);
        }

        return 
$this->_notifications;
    }

    
/**
     * Access the outgoingCallerIds
     */
    
protected function getOutgoingCallerIds(): OutgoingCallerIdList {
        if (!
$this->_outgoingCallerIds) {
            
$this->_outgoingCallerIds = new OutgoingCallerIdList($this->version$this->solution['sid']);
        }

        return 
$this->_outgoingCallerIds;
    }

    
/**
     * Access the queues
     */
    
protected function getQueues(): QueueList {
        if (!
$this->_queues) {
            
$this->_queues = new QueueList($this->version$this->solution['sid']);
        }

        return 
$this->_queues;
    }

    
/**
     * Access the recordings
     */
    
protected function getRecordings(): RecordingList {
        if (!
$this->_recordings) {
            
$this->_recordings = new RecordingList($this->version$this->solution['sid']);
        }

        return 
$this->_recordings;
    }

    
/**
     * Access the signingKeys
     */
    
protected function getSigningKeys(): SigningKeyList {
        if (!
$this->_signingKeys) {
            
$this->_signingKeys = new SigningKeyList($this->version$this->solution['sid']);
        }

        return 
$this->_signingKeys;
    }

    
/**
     * Access the sip
     */
    
protected function getSip(): SipList {
        if (!
$this->_sip) {
            
$this->_sip = new SipList($this->version$this->solution['sid']);
        }

        return 
$this->_sip;
    }

    
/**
     * Access the shortCodes
     */
    
protected function getShortCodes(): ShortCodeList {
        if (!
$this->_shortCodes) {
            
$this->_shortCodes = new ShortCodeList($this->version$this->solution['sid']);
        }

        return 
$this->_shortCodes;
    }

    
/**
     * Access the tokens
     */
    
protected function getTokens(): TokenList {
        if (!
$this->_tokens) {
            
$this->_tokens = new TokenList($this->version$this->solution['sid']);
        }

        return 
$this->_tokens;
    }

    
/**
     * Access the transcriptions
     */
    
protected function getTranscriptions(): TranscriptionList {
        if (!
$this->_transcriptions) {
            
$this->_transcriptions = new TranscriptionList($this->version$this->solution['sid']);
        }

        return 
$this->_transcriptions;
    }

    
/**
     * Access the usage
     */
    
protected function getUsage(): UsageList {
        if (!
$this->_usage) {
            
$this->_usage = new UsageList($this->version$this->solution['sid']);
        }

        return 
$this->_usage;
    }

    
/**
     * Access the validationRequests
     */
    
protected function getValidationRequests(): ValidationRequestList {
        if (!
$this->_validationRequests) {
            
$this->_validationRequests = new ValidationRequestList($this->version$this->solution['sid']);
        }

        return 
$this->_validationRequests;
    }

    
/**
     * Magic getter to lazy load subresources
     *
     * @param string $name Subresource to return
     * @return ListResource The requested subresource
     * @throws TwilioException For unknown subresources
     */
    
public function __get(string $name): ListResource {
        if (
property_exists($this'_' $name)) {
            
$method 'get' ucfirst($name);
            return 
$this->$method();
        }

        throw new 
TwilioException('Unknown subresource ' $name);
    }

    
/**
     * Magic caller to get resource contexts
     *
     * @param string $name Resource to return
     * @param array $arguments Context parameters
     * @return InstanceContext The requested resource context
     * @throws TwilioException For unknown resource
     */
    
public function __call(string $name, array $arguments): InstanceContext {
        
$property $this->$name;
        if (
method_exists($property'getContext')) {
            return 
call_user_func_array(array($property'getContext'), $arguments);
        }

        throw new 
TwilioException('Resource does not have a context');
    }

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