@backblaze-labs/b2-mcp
    Preparing search index...

    Interface B2S3ListObjectsV2Result

    Normalized S3 ListObjectsV2 result.

    interface B2S3ListObjectsV2Result {
        commonPrefixes: B2S3CommonPrefix[];
        isTruncated: boolean;
        keyCount: number;
        nextContinuationToken?: string;
        objects: B2S3ObjectSummary[];
    }
    Index
    commonPrefixes: B2S3CommonPrefix[]

    Common prefixes returned for delimiter-based listing.

    isTruncated: boolean

    Whether more keys are available.

    keyCount: number

    Number of object summaries returned on this page.

    nextContinuationToken?: string

    Continuation token for the next page, when present.

    Current object summaries on this page.