You are here

AuthApiInterface.php in TMGMT Translator Smartling 8.2

Namespace

Smartling\AuthApi

File

vendor/smartling/api-sdk-php/src/AuthApi/AuthApiInterface.php
View 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

Namesort descending Description
AuthApiInterface Interface AuthApiInterface