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

import * as schemas from '.';
/**
 * File version (Base)
 *
 * The bare basic representation of a file version, the minimal
 * amount of fields returned when using the `fields` query
 * parameter.
 */
export interface FileVersionBase {
  /**
   * The unique identifier that represent a file version.
   * Example: 12345
   */
  id: string;
  /**
   * `file_version`
   * Example: file_version
   */
  type: 'file_version';
}