You are here

interface AuthApiInterface in TMGMT Translator Smartling 8.3

Same name and namespace in other branches
  1. 8.4 vendor/smartling/api-sdk-php/src/AuthApi/AuthApiInterface.php \Smartling\AuthApi\AuthApiInterface
  2. 8.2 api-sdk-php/src/AuthApi/AuthApiInterface.php \Smartling\AuthApi\AuthApiInterface
  3. 8.2 vendor/smartling/api-sdk-php/src/AuthApi/AuthApiInterface.php \Smartling\AuthApi\AuthApiInterface

Interface AuthApiInterface

@package Smartling\Auth

Hierarchy

Expanded class hierarchy of AuthApiInterface

All classes that implement AuthApiInterface

10 files declare their use of AuthApiInterface
ApiTestAbstract.php in vendor/smartling/api-sdk-php/tests/unit/ApiTestAbstract.php
AuditLogApi.php in vendor/smartling/api-sdk-php/src/AuditLog/AuditLogApi.php
BaseApiAbstract.php in vendor/smartling/api-sdk-php/src/BaseApiAbstract.php
BatchApi.php in vendor/smartling/api-sdk-php/src/Batch/BatchApi.php
ContextApi.php in vendor/smartling/api-sdk-php/src/Context/ContextApi.php

... See full list

File

vendor/smartling/api-sdk-php/src/AuthApi/AuthApiInterface.php, line 12

Namespace

Smartling\AuthApi
View source
interface AuthApiInterface {

  /**
   * @return string token
   * @throws InvalidAccessTokenException
   */
  public function getAccessToken();

  /**
   * @return string
   */
  public function getTokenType();

  /**
   * @return void
   */
  public function resetToken();

}

Members