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

ProjectsTenantsCompleteQueryOptions

import type { ProjectsTenantsCompleteQueryOptions } from "https://googleapis.deno.dev/v1/jobs:v4.ts";

Additional options for jobs#projectsTenantsCompleteQuery.

interface ProjectsTenantsCompleteQueryOptions {
company?: string;
languageCodes?: string;
pageSize?: number;
query?: string;
scope?: "COMPLETION_SCOPE_UNSPECIFIED" | "TENANT" | "PUBLIC";
type?:
| "COMPLETION_TYPE_UNSPECIFIED"
| "JOB_TITLE"
| "COMPANY_NAME"
| "COMBINED";
}

§Properties

§
company?: string
[src]

If provided, restricts completion to specified company. The format is "projects/{project_id}/tenants/{tenant_id}/companies/{company_id}", for example, "projects/foo/tenants/bar/companies/baz".

§
languageCodes?: string
[src]

The list of languages of the query. This is the BCP-47 language code, such as "en-US" or "sr-Latn". For more information, see Tags for Identifying Languages. The maximum number of allowed characters is 255.

§
pageSize?: number
[src]

Required. Completion result count. The maximum allowed page size is 10.

§
query?: string
[src]

Required. The query used to generate suggestions. The maximum number of allowed characters is 255.

§
scope?: "COMPLETION_SCOPE_UNSPECIFIED" | "TENANT" | "PUBLIC"
[src]

The scope of the completion. The defaults is CompletionScope.PUBLIC.

§
type?: "COMPLETION_TYPE_UNSPECIFIED" | "JOB_TITLE" | "COMPANY_NAME" | "COMBINED"
[src]

The completion topic. The default is CompletionType.COMBINED.