You are here

TranslationSubmissionStates.php in TMGMT Translator Smartling 8.4

File

vendor/smartling/api-sdk-php/src/TranslationRequests/Params/TranslationSubmissionStates.php
View source
<?php

namespace Smartling\TranslationRequests\Params;


/**
 * Class TranslationSubmissionStates
 * @package Smartling\TranslationRequests\Params
 */
class TranslationSubmissionStates {
  const STATE_NEW = 'New';
  const STATE_IN_PROGRESS = 'In Progress';
  const STATE_TRANSLATED = 'Translated';
  const STATE_FAILED = 'Failed';
  const STATE_DELETED = 'Deleted';
  const STATE_COMPLETED = 'Completed';

  /**
   * @var array
   */
  public static $allowedStates = [
    self::STATE_NEW,
    self::STATE_IN_PROGRESS,
    self::STATE_TRANSLATED,
    self::STATE_FAILED,
    self::STATE_DELETED,
    self::STATE_COMPLETED,
  ];

}

Classes

Namesort descending Description
TranslationSubmissionStates Class TranslationSubmissionStates @package Smartling\TranslationRequests\Params