You are here

SearchJobsParameters.php in TMGMT Translator Smartling 8.3

File

vendor/smartling/api-sdk-php/src/Jobs/Params/SearchJobsParameters.php
View source
<?php

namespace Smartling\Jobs\Params;

use Smartling\Parameters\BaseParameters;

/**
 * Class SearchJobsParameters
 *
 * @package Smartling\Params
 */
class SearchJobsParameters extends BaseParameters {

  /**
   * Sets hash codes for searching.
   *
   * @param array $hashCodes
   */
  public function setHashCodes(array $hashCodes) {
    $this
      ->set('hashcodes', $hashCodes);
  }

  /**
   * Sets file uris for searching.
   *
   * @param array $fileUris
   */
  public function setFileUris(array $fileUris) {
    $this
      ->set('fileUris', $fileUris);
  }

  /**
   * Sets translation job uids for searching.
   *
   * @param array $uids
   */
  public function setUids(array $uids) {
    $this
      ->set('translationJobUids', $uids);
  }

}

Classes

Namesort descending Description
SearchJobsParameters Class SearchJobsParameters