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

JobEvent

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

An event issued when a job seeker interacts with the application that implements Cloud Talent Solution.

interface JobEvent {
jobs?: string[];
type?:
| "JOB_EVENT_TYPE_UNSPECIFIED"
| "IMPRESSION"
| "VIEW"
| "VIEW_REDIRECT"
| "APPLICATION_START"
| "APPLICATION_FINISH"
| "APPLICATION_QUICK_SUBMISSION"
| "APPLICATION_REDIRECT"
| "APPLICATION_START_FROM_SEARCH"
| "APPLICATION_REDIRECT_FROM_SEARCH"
| "APPLICATION_COMPANY_SUBMIT"
| "BOOKMARK"
| "NOTIFICATION"
| "HIRED"
| "SENT_CV"
| "INTERVIEW_GRANTED";
}

§Properties

§
jobs?: string[]
[src]

Required. The job name(s) associated with this event. For example, if this is an impression event, this field contains the identifiers of all jobs shown to the job seeker. If this was a view event, this field contains the identifier of the viewed job. The format is "projects/{project_id}/tenants/{tenant_id}/jobs/{job_id}", for example, "projects/foo/tenants/bar/jobs/baz".

§
type?: "JOB_EVENT_TYPE_UNSPECIFIED" | "IMPRESSION" | "VIEW" | "VIEW_REDIRECT" | "APPLICATION_START" | "APPLICATION_FINISH" | "APPLICATION_QUICK_SUBMISSION" | "APPLICATION_REDIRECT" | "APPLICATION_START_FROM_SEARCH" | "APPLICATION_REDIRECT_FROM_SEARCH" | "APPLICATION_COMPANY_SUBMIT" | "BOOKMARK" | "NOTIFICATION" | "HIRED" | "SENT_CV" | "INTERVIEW_GRANTED"
[src]

Required. The type of the event (see JobEventType).