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

Job

import type { Job } from "https://googleapis.deno.dev/v1/youtubereporting:v1.ts";

A job creating reports of a specific type.

interface Job {
createTime?: Date;
expireTime?: Date;
id?: string;
name?: string;
reportTypeId?: string;
systemManaged?: boolean;
}

§Properties

§
createTime?: Date
[src]

The creation date/time of the job.

§
expireTime?: Date
[src]

The date/time when this job will expire/expired. After a job expired, no new reports are generated.

§
id?: string
[src]

The server-generated ID of the job (max. 40 characters).

§
name?: string
[src]

The name of the job (max. 100 characters).

§
reportTypeId?: string
[src]

The type of reports this job creates. Corresponds to the ID of a ReportType.

§
systemManaged?: boolean
[src]

True if this a system-managed job that cannot be modified by the user; otherwise false.