Source: schemas/folder-mini.generated.ts

  1. import * as schemas from '.';
  2. /**
  3. * Folder (Mini)
  4. *
  5. * A mini representation of a file version, used when
  6. * nested under another resource.
  7. */
  8. export interface FolderMini extends schemas.FolderBase {
  9. /**
  10. * A numeric identifier that represents the most recent user event
  11. * that has been applied to this item.
  12. *
  13. * This can be used in combination with the `GET /events`-endpoint
  14. * to filter out user events that would have occurred before this
  15. * identifier was read.
  16. *
  17. * An example would be where a Box Drive-like application
  18. * would fetch an item via the API, and then listen to incoming
  19. * user events for changes to the item. The application would
  20. * ignore any user events where the `sequence_id` in the event
  21. * is smaller than or equal to the `sequence_id` in the originally
  22. * fetched resource.
  23. * Example: 3
  24. */
  25. sequence_id?: string;
  26. /**
  27. * The name of the folder.
  28. * Example: Contracts
  29. */
  30. name?: string;
  31. }