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

    Type Alias TxnOffsetCommitRequest

    TxnOffsetCommit request payload.

    type TxnOffsetCommitRequest = {
        generationId?: number;
        groupId: string;
        groupInstanceId?: string | null;
        memberId?: string;
        producerEpoch: number;
        producerId: bigint;
        taggedFields?: readonly TaggedField[];
        topics: readonly TxnOffsetCommitTopicRequest[];
        transactionalId: string;
    }
    Index

    Properties

    generationId?: number

    The generation ID for the consumer group (v3+). -1 if not a member.

    groupId: string

    The consumer group ID.

    groupInstanceId?: string | null

    The group instance ID for static membership (v3+).

    memberId?: string

    The member ID within the consumer group (v3+).

    producerEpoch: number

    The current producer epoch.

    producerId: bigint

    The current producer ID.

    taggedFields?: readonly TaggedField[]

    Tagged fields (v3+).

    topics: readonly TxnOffsetCommitTopicRequest[]

    Topics with partition offsets to commit.

    transactionalId: string

    The transactional ID.