AuthApiInterface.php in TMGMT Translator Smartling 8.4
Same filename and directory in other branches
Namespace
Smartling\AuthApiFile
vendor/smartling/api-sdk-php/src/AuthApi/AuthApiInterface.phpView source
<?php
namespace Smartling\AuthApi;
use Smartling\Exceptions\InvalidAccessTokenException;
/**
* Interface AuthApiInterface
*
* @package Smartling\Auth
*/
interface AuthApiInterface {
/**
* @return string token
* @throws InvalidAccessTokenException
*/
public function getAccessToken();
/**
* @return string
*/
public function getTokenType();
/**
* @return void
*/
public function resetToken();
}
Interfaces
Name | Description |
---|---|
AuthApiInterface | Interface AuthApiInterface |