File "Accounts.php"
Full Path: /home/clickysoft/public_html/jmapi5.clickysoft.net/vendor/twilio/sdk/src/Twilio/Rest/Accounts.php
File size: 1.59 KB
MIME-type: text/x-php
Charset: utf-8
<?php
namespace Twilio\Rest;
use Twilio\Rest\Accounts\V1;
class Accounts extends AccountsBase {
/**
* @deprecated Use v1->authTokenPromotion instead
*/
protected function getAuthTokenPromotion(): \Twilio\Rest\Accounts\V1\AuthTokenPromotionList {
echo "authTokenPromotion is deprecated. Use v1->authTokenPromotion instead.";
return $this->v1->authTokenPromotion;
}
/**
* @deprecated Use v1->authTokenPromotion() instead.
*/
protected function contextAuthTokenPromotion(): \Twilio\Rest\Accounts\V1\AuthTokenPromotionContext {
echo "authTokenPromotion() is deprecated. Use v1->authTokenPromotion() instead.";
return $this->v1->authTokenPromotion();
}
/**
* @deprecated Use v1->credentials instead.
*/
protected function getCredentials(): \Twilio\Rest\Accounts\V1\CredentialList {
echo "credentials is deprecated. Use v1->credentials instead.";
return $this->v1->credentials;
}
/**
* @deprecated Use v1->secondaryAuthToken instead.
*/
protected function getSecondaryAuthToken(): \Twilio\Rest\Accounts\V1\SecondaryAuthTokenList {
echo "secondaryAuthToken is deprecated. Use v1->secondaryAuthToken instead.";
return $this->v1->secondaryAuthToken;
}
/**
* @deprecated Use v1->secondaryAuthToken() instead.
*/
protected function contextSecondaryAuthToken(): \Twilio\Rest\Accounts\V1\SecondaryAuthTokenContext {
echo "secondaryAuthToken() is deprecated. Use v1->secondaryAuthToken() instead.";
return $this->v1->secondaryAuthToken();
}
}