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

    Type Alias DeleteTopicsTopicResponse

    Per-topic result from a DeleteTopics response.

    type DeleteTopicsTopicResponse = {
        errorCode: number;
        errorMessage: string | null;
        name: string | null;
        taggedFields: readonly TaggedField[];
        topicId?: Uint8Array;
    }
    Index

    Properties

    errorCode: number

    Error code (0 = success).

    errorMessage: string | null

    Error message (v5+).

    name: string | null

    The topic name. Null if deleted by ID (v6+).

    taggedFields: readonly TaggedField[]

    Tagged fields (v4+).

    topicId?: Uint8Array

    Topic ID (v6+, UUID as 16 bytes).