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

    Type Alias ListOffsetsPartitionResponse

    Partition response in a ListOffsets response.

    type ListOffsetsPartitionResponse = {
        errorCode: number;
        leaderEpoch: number;
        offset: bigint;
        partitionIndex: number;
        taggedFields: readonly TaggedField[];
        timestamp: bigint;
    }
    Index

    Properties

    errorCode: number

    The error code (0 = no error).

    leaderEpoch: number

    The leader epoch of the returned offset (v4+). -1 if not available.

    offset: bigint

    The offset (v1+). In v0, this comes from the old_style_offsets array instead.

    partitionIndex: number

    The partition index.

    taggedFields: readonly TaggedField[]

    Tagged fields (v6+).

    timestamp: bigint

    The timestamp associated with the offset (v1+). -1 if not available.