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

ProjectsEvaluationJobsListOptions

import type { ProjectsEvaluationJobsListOptions } from "https://googleapis.deno.dev/v1/datalabeling:v1beta1.ts";

Additional options for DataLabeling#projectsEvaluationJobsList.

interface ProjectsEvaluationJobsListOptions {
filter?: string;
pageSize?: number;
pageToken?: string;
}

§Properties

§
filter?: string
[src]

Optional. You can filter the jobs to list by model_id (also known as model_name, as described in EvaluationJob.modelVersion) or by evaluation job state (as described in EvaluationJob.state). To filter by both criteria, use the AND operator or the OR operator. For example, you can use the following string for your filter: "evaluation_job.model_id = {model_name} AND evaluation_job.state = {evaluation_job_state}"

§
pageSize?: number
[src]

Optional. Requested page size. Server may return fewer results than requested. Default value is 100.

§
pageToken?: string
[src]

Optional. A token identifying a page of results for the server to return. Typically obtained by the nextPageToken in the response to the previous request. The request returns the first page if this is empty.