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

    Interface ListPartsResponse

    Response from the b2_list_parts API call.

    interface ListPartsResponse {
        nextPartNumber: number | null;
        parts: readonly PartInfo[];
    }
    Index

    Properties

    nextPartNumber: number | null

    Next part number to use for pagination, or null if all parts have been listed.

    parts: readonly PartInfo[]

    Array of uploaded parts.