You are here

class ListFilesParameters in TMGMT Translator Smartling 8.3

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

Class ListFilesParameters

@package Smartling\File\Params

Hierarchy

Expanded class hierarchy of ListFilesParameters

2 files declare their use of ListFilesParameters
FileApi.php in vendor/smartling/api-sdk-php/src/File/FileApi.php
FileApiFunctionalTest.php in vendor/smartling/api-sdk-php/tests/functional/FileApiFunctionalTest.php

File

vendor/smartling/api-sdk-php/src/File/Params/ListFilesParameters.php, line 12

Namespace

Smartling\File\Params
View source
class ListFilesParameters extends BaseParameters {

  /**
   * @param string $uri_mask
   *
   * @return ListFilesParameters
   */
  public function setUriMask($uri_mask) {
    $this
      ->set('uriMask', $uri_mask);
    return $this;
  }

  /**
   * @param string $file_types
   *
   * @return ListFilesParameters
   */
  public function setFileTypes($file_types) {
    $this
      ->set('fileTypes[]', $file_types);
    return $this;
  }

  /**
   * @param string $last_uploaded_after
   *
   * @return ListFilesParameters
   */
  public function setLastUploadedAfter($last_uploaded_after) {
    $this
      ->set('lastUploadedAfter', $last_uploaded_after);
    return $this;
  }

  /**
   * @param string $last_uploaded_before
   *
   * @return ListFilesParameters
   */
  public function setLastUploadedBefore($last_uploaded_before) {
    $this
      ->set('lastUploadedBefore', $last_uploaded_before);
    return $this;
  }

  /**
   * @param int $offset
   *
   * @return ListFilesParameters
   */
  public function setOffset($offset) {
    $this
      ->set('offset', $offset);
    return $this;
  }

  /**
   * @param int $limit
   *
   * @return ListFilesParameters
   */
  public function setLimit($limit) {
    $this
      ->set('limit', $limit);
    return $this;
  }

}

Members