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

ListThreadsResponse

import type { ListThreadsResponse } from "https://googleapis.deno.dev/v1/gmail:v1.ts";
interface ListThreadsResponse {
nextPageToken?: string;
resultSizeEstimate?: number;
threads?: Thread[];
}

§Properties

§
nextPageToken?: string
[src]

Page token to retrieve the next page of results in the list.

§
resultSizeEstimate?: number
[src]

Estimated total number of results.

§
threads?: Thread[]
[src]

List of threads. Note that each thread resource does not contain a list of messages. The list of messages for a given thread can be fetched using the threads.get method.