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

SearchJobsResponse

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

Response for SearchJob method.

interface SearchJobsResponse {
broadenedQueryJobsCount?: number;
histogramQueryResults?: HistogramQueryResult[];
locationFilters?: Location[];
matchingJobs?: MatchingJob[];
metadata?: ResponseMetadata;
nextPageToken?: string;
spellCorrection?: SpellingCorrection;
totalSize?: number;
}

§Properties

§
broadenedQueryJobsCount?: number
[src]

If query broadening is enabled, we may append additional results from the broadened query. This number indicates how many of the jobs returned in the jobs field are from the broadened query. These results are always at the end of the jobs list. In particular, a value of 0, or if the field isn't set, all the jobs in the jobs list are from the original (without broadening) query. If this field is non-zero, subsequent requests with offset after this result set should contain all broadened results.

§
histogramQueryResults?: HistogramQueryResult[]
[src]

The histogram results that match with specified SearchJobsRequest.histogram_queries.

§
locationFilters?: Location[]
[src]

The location filters that the service applied to the specified query. If any filters are lat-lng based, the Location.location_type is Location.LocationType.LOCATION_TYPE_UNSPECIFIED.

§
matchingJobs?: MatchingJob[]
[src]

The Job entities that match the specified SearchJobsRequest.

§

Additional information for the API invocation, such as the request tracking id.

§
nextPageToken?: string
[src]

The token that specifies the starting position of the next page of results. This field is empty if there are no more results.

§
spellCorrection?: SpellingCorrection
[src]

The spell checking result, and correction.

§
totalSize?: number
[src]

Number of jobs that match the specified query. Note: This size is precise only if the total is less than 100,000.