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

Report

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

A report's metadata including the URL from which the report itself can be downloaded.

interface Report {
createTime?: Date;
downloadUrl?: string;
endTime?: Date;
id?: string;
jobExpireTime?: Date;
jobId?: string;
startTime?: Date;
}

§Properties

§
createTime?: Date
[src]

The date/time when this report was created.

§
downloadUrl?: string
[src]

The URL from which the report can be downloaded (max. 1000 characters).

§
endTime?: Date
[src]

The end of the time period that the report instance covers. The value is exclusive.

§
id?: string
[src]

The server-generated ID of the report.

§
jobExpireTime?: Date
[src]

The date/time when the job this report belongs to will expire/expired.

§
jobId?: string
[src]

The ID of the job that created this report.

§
startTime?: Date
[src]

The start of the time period that the report instance covers. The value is inclusive.