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

    Interface ReportRow

    Normalized row from a Backblaze usage report CSV.

    interface ReportRow {
        _date: string;
        accountId: string;
        bucketId?: string;
        bucketName?: string;
        classCTxn: number;
        egressBytes: number;
        storageBytes: number | null;
        uploadBytes: number;
    }
    Index
    _date: string

    Normalized report date in YYYY-MM-DD format.

    accountId: string

    B2 account ID from the report row.

    bucketId?: string

    B2 bucket ID, when the report row is bucket-scoped.

    bucketName?: string

    B2 bucket name, when the report row includes it.

    classCTxn: number

    Class C transaction count reported for the row.

    egressBytes: number

    Downloaded bytes reported for the row.

    storageBytes: number | null

    Stored bytes snapshot, or null when the report omits storage data.

    uploadBytes: number

    Uploaded bytes reported for the row.