Type Alias ExternalFileRevisionMeta

ExternalFileRevisionMeta: {
    checksum?: string;
    created: number;
    id: string;
    lastRetrieved?: number;
    message?: string;
    mimeType: string;
    sizeBytes: number;
    sourceName?: string;
}

Type declaration

  • Optionalchecksum?: string

    Content hash for integrity checks and optional deduplication.

  • created: number

    Epoch timestamp in milliseconds when this revision was created.

  • id: string
  • OptionallastRetrieved?: number

    Epoch timestamp in milliseconds when this revision was last loaded onto the scene. Used to determine whether to delete unused files from storage.

  • Optionalmessage?: string

    Optional note describing what changed in this revision.

  • mimeType: string
  • sizeBytes: number
  • OptionalsourceName?: string

    Original upload filename shown to the user.