@qualithm/kafka-client - v0.1.6
    Preparing search index...

    Type Alias OffsetFetchPartitionResponse

    OffsetFetch per-partition response data.

    type OffsetFetchPartitionResponse = {
        committedLeaderEpoch: number;
        committedOffset: bigint;
        errorCode: number;
        metadata: string | null;
        partitionIndex: number;
        taggedFields: readonly TaggedField[];
    }
    Index

    Properties

    committedLeaderEpoch: number

    The leader epoch at commit time (v5+). -1 if unknown.

    committedOffset: bigint

    The committed offset. -1 if no offset committed.

    errorCode: number

    Error code (0 = no error).

    metadata: string | null

    Metadata string. Null if not set.

    partitionIndex: number

    The partition index.

    taggedFields: readonly TaggedField[]

    Tagged fields (v6+).