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

PollItemsRequest

import type { PollItemsRequest } from "https://googleapis.deno.dev/v1/cloudsearch:v1.ts";
interface PollItemsRequest {
connectorName?: string;
debugOptions?: DebugOptions;
limit?: number;
queue?: string;
statusCodes?:
| "CODE_UNSPECIFIED"
| "ERROR"
| "MODIFIED"
| "NEW_ITEM"
| "ACCEPTED"[];
}

§Properties

§
connectorName?: string
[src]

The name of connector making this call. Format: datasources/{source_id}/connectors/{ID}

§
debugOptions?: DebugOptions
[src]

Common debug options.

§
limit?: number
[src]

Maximum number of items to return. The maximum value is 100 and the default value is 20.

§
queue?: string
[src]

Queue name to fetch items from. If unspecified, PollItems will fetch from 'default' queue. The maximum length is 100 characters.

§
statusCodes?: "CODE_UNSPECIFIED" | "ERROR" | "MODIFIED" | "NEW_ITEM" | "ACCEPTED"[]
[src]

Limit the items polled to the ones with these statuses.