Source: schemas/folder-base.generated.ts

  1. import * as schemas from '.';
  2. /**
  3. * Folder (Base)
  4. *
  5. * The bare basic representation of a folder, the minimal
  6. * amount of fields returned when using the `fields` query
  7. * parameter.
  8. */
  9. export interface FolderBase {
  10. /**
  11. * The unique identifier that represent a folder.
  12. *
  13. * The ID for any folder can be determined
  14. * by visiting a folder in the web application
  15. * and copying the ID from the URL. For example,
  16. * for the URL `https://*.app.box.com/folders/123`
  17. * the `folder_id` is `123`.
  18. * Example: 12345
  19. */
  20. id: string;
  21. /**
  22. * The HTTP `etag` of this folder. This can be used within some API
  23. * endpoints in the `If-Match` and `If-None-Match` headers to only
  24. * perform changes on the folder if (no) changes have happened.
  25. * Example: 1
  26. */
  27. etag?: string;
  28. /**
  29. * `folder`
  30. * Example: folder
  31. */
  32. type: 'folder';
  33. }