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

ComputeMessageStatsResponse

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

Response containing stats for messages in the requested topic and partition.

interface ComputeMessageStatsResponse {
messageBytes?: bigint;
messageCount?: bigint;
minimumEventTime?: Date;
minimumPublishTime?: Date;
}

§Properties

§
messageBytes?: bigint
[src]

The number of quota bytes accounted to these messages.

§
messageCount?: bigint
[src]

The count of messages.

§
minimumEventTime?: Date
[src]

The minimum event timestamp across these messages. For the purposes of this computation, if a message does not have an event time, we use the publish time. The timestamp will be unset if there are no messages.

§
minimumPublishTime?: Date
[src]

The minimum publish timestamp across these messages. Note that publish timestamps within a partition are not guaranteed to be non-decreasing. The timestamp will be unset if there are no messages.