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

ComputeMessageStatsRequest

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

Compute statistics about a range of messages in a given topic and partition.

interface ComputeMessageStatsRequest {
endCursor?: Cursor;
partition?: bigint;
startCursor?: Cursor;
}

§Properties

§
endCursor?: Cursor
[src]

The exclusive end of the range. The range is empty if end_cursor <= start_cursor. Specifying a start_cursor before the first message and an end_cursor after the last message will retrieve all messages.

§
partition?: bigint
[src]

Required. The partition for which we should compute message stats.

§
startCursor?: Cursor
[src]

The inclusive start of the range.