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

ComputeTimeCursorResponse

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

Response containing the cursor corresponding to a publish or event time in a topic partition.

interface ComputeTimeCursorResponse {
cursor?: Cursor;
}

§Properties

§
cursor?: Cursor
[src]

If present, the cursor references the first message with time greater than or equal to the specified target time. If such a message cannot be found, the cursor will be unset (i.e. cursor is not present).