001package com.box.sdkgen.managers.folderlocks;
002
003public class GetFolderLocksQueryParams {
004
005  /**
006   * The unique identifier that represent a folder.
007   *
008   * <p>The ID for any folder can be determined by visiting this folder in the web application and
009   * copying the ID from the URL. For example, for the URL `https://*.app.box.com/folder/123` the
010   * `folder_id` is `123`.
011   *
012   * <p>The root folder of a Box account is always represented by the ID `0`.
013   */
014  public final String folderId;
015
016  public GetFolderLocksQueryParams(String folderId) {
017    this.folderId = folderId;
018  }
019
020  public String getFolderId() {
021    return folderId;
022  }
023}