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

    Type Alias EndTxnRequest

    EndTxn request payload.

    type EndTxnRequest = {
        committed: boolean;
        producerEpoch: number;
        producerId: bigint;
        taggedFields?: readonly TaggedField[];
        transactionalId: string;
    }
    Index

    Properties

    committed: boolean

    Whether the transaction should be committed (true) or aborted (false).

    producerEpoch: number

    The current producer epoch.

    producerId: bigint

    The current producer ID.

    taggedFields?: readonly TaggedField[]

    Tagged fields (v3+).

    transactionalId: string

    The transactional ID.