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

ListSnoozesResponse

import type { ListSnoozesResponse } from "https://googleapis.deno.dev/v1/monitoring:v3.ts";

The results of a successful ListSnoozes call, containing the matching Snoozes.

interface ListSnoozesResponse {
nextPageToken?: string;
snoozes?: Snooze[];
}

§Properties

§
nextPageToken?: string
[src]

Page token for repeated calls to ListSnoozes, to fetch additional pages of results. If this is empty or missing, there are no more pages.

§
snoozes?: Snooze[]
[src]

Snoozes matching this list call.