modern-events-calendar-lite/app/api/Twilio/Rest/Api/V2010.php

309 lines
11 KiB
PHP
Executable file

<?php
/**
* This code was generated by
* ___ _ _ _ _ _ _ ____ ____ ____ _ ____ ____ _ _ ____ ____ ____ ___ __ __
* | | | | | | | | | __ | | |__| | __ | __ |___ |\ | |___ |__/ |__| | | | |__/
* | |_|_| | |___ | |__| |__| | | | |__] |___ | \| |___ | \ | | | |__| | \
*
* Twilio - Api
* This is the public Twilio REST API.
*
* NOTE: This class is auto generated by OpenAPI Generator.
* https://openapi-generator.tech
* Do not edit the class manually.
*/
namespace Twilio\Rest\Api;
use Twilio\Domain;
use Twilio\Exceptions\TwilioException;
use Twilio\InstanceContext;
use Twilio\Rest\Api\V2010\AccountInstance;
use Twilio\Rest\Api\V2010\AccountList;
use Twilio\Rest\Api\V2010\AccountContext;
use Twilio\Version;
/**
* @property AccountList $accounts
* @property AccountContext $account
* @property \Twilio\Rest\Api\V2010\Account\RecordingList $recordings
* @property \Twilio\Rest\Api\V2010\Account\UsageList $usage
* @property \Twilio\Rest\Api\V2010\Account\MessageList $messages
* @property \Twilio\Rest\Api\V2010\Account\KeyList $keys
* @property \Twilio\Rest\Api\V2010\Account\NewKeyList $newKeys
* @property \Twilio\Rest\Api\V2010\Account\ApplicationList $applications
* @property \Twilio\Rest\Api\V2010\Account\IncomingPhoneNumberList $incomingPhoneNumbers
* @property \Twilio\Rest\Api\V2010\Account\ConferenceList $conferences
* @property \Twilio\Rest\Api\V2010\Account\CallList $calls
* @property \Twilio\Rest\Api\V2010\Account\OutgoingCallerIdList $outgoingCallerIds
* @property \Twilio\Rest\Api\V2010\Account\ValidationRequestList $validationRequests
* @property \Twilio\Rest\Api\V2010\Account\TranscriptionList $transcriptions
* @property \Twilio\Rest\Api\V2010\Account\ConnectAppList $connectApps
* @property \Twilio\Rest\Api\V2010\Account\AuthorizedConnectAppList $authorizedConnectApps
* @property \Twilio\Rest\Api\V2010\Account\TokenList $tokens
* @property \Twilio\Rest\Api\V2010\Account\BalanceList $balance
* @property \Twilio\Rest\Api\V2010\Account\SipList $sip
* @property \Twilio\Rest\Api\V2010\Account\NotificationList $notifications
* @property \Twilio\Rest\Api\V2010\Account\AvailablePhoneNumberCountryList $availablePhoneNumbers
* @property \Twilio\Rest\Api\V2010\Account\AddressList $addresses
* @property \Twilio\Rest\Api\V2010\Account\QueueList $queues
* @property \Twilio\Rest\Api\V2010\Account\ShortCodeList $shortCodes
* @property \Twilio\Rest\Api\V2010\Account\SigningKeyList $signingKeys
* @property \Twilio\Rest\Api\V2010\Account\NewSigningKeyList $newSigningKeys
* @method \Twilio\Rest\Api\V2010\AccountContext accounts(string $sid)
* @method \Twilio\Rest\Api\V2010\Account\AddressContext addresses(string $sid)
* @method \Twilio\Rest\Api\V2010\Account\ApplicationContext applications(string $sid)
* @method \Twilio\Rest\Api\V2010\Account\AuthorizedConnectAppContext authorizedConnectApps(string $connectAppSid)
* @method \Twilio\Rest\Api\V2010\Account\AvailablePhoneNumberCountryContext availablePhoneNumbers(string $countryCode)
* @method \Twilio\Rest\Api\V2010\Account\CallContext calls(string $sid)
* @method \Twilio\Rest\Api\V2010\Account\ConferenceContext conferences(string $sid)
* @method \Twilio\Rest\Api\V2010\Account\ConnectAppContext connectApps(string $sid)
* @method \Twilio\Rest\Api\V2010\Account\IncomingPhoneNumberContext incomingPhoneNumbers(string $sid)
* @method \Twilio\Rest\Api\V2010\Account\KeyContext keys(string $sid)
* @method \Twilio\Rest\Api\V2010\Account\MessageContext messages(string $sid)
* @method \Twilio\Rest\Api\V2010\Account\NotificationContext notifications(string $sid)
* @method \Twilio\Rest\Api\V2010\Account\OutgoingCallerIdContext outgoingCallerIds(string $sid)
* @method \Twilio\Rest\Api\V2010\Account\QueueContext queues(string $sid)
* @method \Twilio\Rest\Api\V2010\Account\RecordingContext recordings(string $sid)
* @method \Twilio\Rest\Api\V2010\Account\ShortCodeContext shortCodes(string $sid)
* @method \Twilio\Rest\Api\V2010\Account\SigningKeyContext signingKeys(string $sid)
* @method \Twilio\Rest\Api\V2010\Account\TranscriptionContext transcriptions(string $sid)
*/
class V2010 extends Version
{
protected $_accounts;
protected $_account = null;
protected $_recordings = null;
protected $_usage = null;
protected $_messages = null;
protected $_keys = null;
protected $_newKeys = null;
protected $_applications = null;
protected $_incomingPhoneNumbers = null;
protected $_conferences = null;
protected $_calls = null;
protected $_outgoingCallerIds = null;
protected $_validationRequests = null;
protected $_transcriptions = null;
protected $_connectApps = null;
protected $_authorizedConnectApps = null;
protected $_tokens = null;
protected $_balance = null;
protected $_sip = null;
protected $_notifications = null;
protected $_availablePhoneNumbers = null;
protected $_addresses = null;
protected $_queues = null;
protected $_shortCodes = null;
protected $_signingKeys = null;
protected $_newSigningKeys = null;
/**
* Construct the V2010 version of Api
*
* @param Domain $domain Domain that contains the version
*/
public function __construct(Domain $domain)
{
parent::__construct($domain);
$this->version = '2010-04-01';
}
protected function getAccounts(): AccountList
{
if (!$this->_accounts) {
$this->_accounts = new AccountList($this);
}
return $this->_accounts;
}
/**
* @return AccountContext Account provided as the authenticating account
*/
protected function getAccount(): AccountContext
{
if (!$this->_account) {
$this->_account = new AccountContext(
$this,
$this->domain->getClient()->getAccountSid()
);
}
return $this->_account;
}
/**
* Setter to override the primary account
*
* @param AccountContext|AccountInstance $account account to use as the primary
* account
*/
public function setAccount($account): void
{
$this->_account = $account;
}
protected function getRecordings(): \Twilio\Rest\Api\V2010\Account\RecordingList
{
return $this->account->recordings;
}
protected function getUsage(): \Twilio\Rest\Api\V2010\Account\UsageList
{
return $this->account->usage;
}
protected function getMessages(): \Twilio\Rest\Api\V2010\Account\MessageList
{
return $this->account->messages;
}
protected function getKeys(): \Twilio\Rest\Api\V2010\Account\KeyList
{
return $this->account->keys;
}
protected function getNewKeys(): \Twilio\Rest\Api\V2010\Account\NewKeyList
{
return $this->account->newKeys;
}
protected function getApplications(): \Twilio\Rest\Api\V2010\Account\ApplicationList
{
return $this->account->applications;
}
protected function getIncomingPhoneNumbers(): \Twilio\Rest\Api\V2010\Account\IncomingPhoneNumberList
{
return $this->account->incomingPhoneNumbers;
}
protected function getConferences(): \Twilio\Rest\Api\V2010\Account\ConferenceList
{
return $this->account->conferences;
}
protected function getCalls(): \Twilio\Rest\Api\V2010\Account\CallList
{
return $this->account->calls;
}
protected function getOutgoingCallerIds(): \Twilio\Rest\Api\V2010\Account\OutgoingCallerIdList
{
return $this->account->outgoingCallerIds;
}
protected function getValidationRequests(): \Twilio\Rest\Api\V2010\Account\ValidationRequestList
{
return $this->account->validationRequests;
}
protected function getTranscriptions(): \Twilio\Rest\Api\V2010\Account\TranscriptionList
{
return $this->account->transcriptions;
}
protected function getConnectApps(): \Twilio\Rest\Api\V2010\Account\ConnectAppList
{
return $this->account->connectApps;
}
protected function getAuthorizedConnectApps(): \Twilio\Rest\Api\V2010\Account\AuthorizedConnectAppList
{
return $this->account->authorizedConnectApps;
}
protected function getTokens(): \Twilio\Rest\Api\V2010\Account\TokenList
{
return $this->account->tokens;
}
protected function getBalance(): \Twilio\Rest\Api\V2010\Account\BalanceList
{
return $this->account->balance;
}
protected function getSip(): \Twilio\Rest\Api\V2010\Account\SipList
{
return $this->account->sip;
}
protected function getNotifications(): \Twilio\Rest\Api\V2010\Account\NotificationList
{
return $this->account->notifications;
}
protected function getAvailablePhoneNumbers(): \Twilio\Rest\Api\V2010\Account\AvailablePhoneNumberCountryList
{
return $this->account->availablePhoneNumbers;
}
protected function getAddresses(): \Twilio\Rest\Api\V2010\Account\AddressList
{
return $this->account->addresses;
}
protected function getQueues(): \Twilio\Rest\Api\V2010\Account\QueueList
{
return $this->account->queues;
}
protected function getShortCodes(): \Twilio\Rest\Api\V2010\Account\ShortCodeList
{
return $this->account->shortCodes;
}
protected function getSigningKeys(): \Twilio\Rest\Api\V2010\Account\SigningKeyList
{
return $this->account->signingKeys;
}
protected function getNewSigningKeys(): \Twilio\Rest\Api\V2010\Account\NewSigningKeyList
{
return $this->account->newSigningKeys;
}
/**
* Magic getter to lazy load root resources
*
* @param string $name Resource to return
* @return \Twilio\ListResource The requested resource
* @throws TwilioException For unknown resource
*/
public function __get(string $name)
{
$method = 'get' . \ucfirst($name);
if (\method_exists($this, $method)) {
return $this->$method();
}
throw new TwilioException('Unknown resource ' . $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
{
return '[Twilio.Api.V2010]';
}
}