@backblaze-labs/b2-sdk - v0.1.0
    Preparing search index...

    Interface ListFileVersionsResponse

    Response from the b2_list_file_versions API call.

    interface ListFileVersionsResponse {
        files: readonly FileVersion[];
        nextFileId: FileId | null;
        nextFileName: string | null;
    }
    Index

    Properties

    files: readonly FileVersion[]

    Array of file versions matching the request.

    nextFileId: FileId | null

    Next file ID to use for pagination, or null if all versions have been listed.

    nextFileName: string | null

    Next file name to use for pagination, or null if all versions have been listed.