@inweb/client
    Preparing search index...

    Interface IFileVersionInfo

    Defines the information about file version.

    interface IFileVersionInfo {
        createdAt: string;
        fileId: string;
        ownerId: string;
        size: number;
        status: IFileStatus;
        version: number;
    }
    Index

    Properties

    createdAt: string

    Version creation time (UTC).

    fileId: string

    Version file ID.

    ownerId: string

    ID of the user who created the version.

    size: number

    Size of the version file in bytes.

    status: IFileStatus

    Version file data status.

    version: number

    Zero-based version number. The original file has version 0.