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

  1. import * as schemas from '.';
  2. /**
  3. * File version (Mini)
  4. *
  5. * A mini representation of a file version, used when
  6. * nested within another resource.
  7. */
  8. export interface FileVersionMini extends schemas.FileVersionBase {
  9. /**
  10. * The SHA1 hash of this version of the file.
  11. * Example: 134b65991ed521fcfe4724b7d814ab8ded5185dc
  12. */
  13. sha1?: string;
  14. }