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

UsersMessagesListOptions

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

Additional options for Gmail#usersMessagesList.

interface UsersMessagesListOptions {
includeSpamTrash?: boolean;
labelIds?: string;
maxResults?: number;
pageToken?: string;
q?: string;
temporaryEeccBypass?: boolean;
}

§Properties

§
includeSpamTrash?: boolean
[src]

Include messages from SPAM and TRASH in the results.

§
labelIds?: string
[src]

Only return messages with labels that match all of the specified label IDs. Messages in a thread might have labels that other messages in the same thread don't have. To learn more, see Manage labels on messages and threads.

§
maxResults?: number
[src]

Maximum number of messages to return. This field defaults to 100. The maximum allowed value for this field is 500.

§
pageToken?: string
[src]

Page token to retrieve a specific page of results in the list.

§
q?: string
[src]

Only return messages matching the specified query. Supports the same query format as the Gmail search box. For example, "from:someuser@example.com rfc822msgid: is:unread". Parameter cannot be used when accessing the api using the gmail.metadata scope.

§
temporaryEeccBypass?: boolean
[src]