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

    Type Alias FetchTopicResponse

    Per-topic response in a Fetch response.

    type FetchTopicResponse = {
        name: string;
        partitions: readonly FetchPartitionResponse[];
        taggedFields: readonly TaggedField[];
        topicId: Uint8Array;
    }
    Index

    Properties

    name: string

    The topic name (v0–v12). Empty string in v13+ when topic_id is used.

    partitions: readonly FetchPartitionResponse[]

    Partition responses.

    taggedFields: readonly TaggedField[]

    Tagged fields (v12+).

    topicId: Uint8Array

    The topic ID (v13+). A 16-byte UUID, or empty for earlier versions.