Source: schemas/file-version-base.generated.ts

  1. import * as schemas from '.';
  2. /**
  3. * File version (Base)
  4. *
  5. * The bare basic representation of a file version, the minimal
  6. * amount of fields returned when using the `fields` query
  7. * parameter.
  8. */
  9. export interface FileVersionBase {
  10. /**
  11. * The unique identifier that represent a file version.
  12. * Example: 12345
  13. */
  14. id: string;
  15. /**
  16. * `file_version`
  17. * Example: file_version
  18. */
  19. type: 'file_version';
  20. }