Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

ConsumerPartitionMetadata

import type { ConsumerPartitionMetadata } from "https://googleapis.deno.dev/v1/managedkafka:v1.ts";

Metadata for a consumer group corresponding to a specific partition.

interface ConsumerPartitionMetadata {
metadata?: string;
offset?: bigint;
}

§Properties

§
metadata?: string
[src]

Optional. The associated metadata for this partition, or empty if it does not exist.

§
offset?: bigint
[src]

Required. The current offset for this partition, or 0 if no offset has been committed.