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

JobsReportsListOptions

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

Additional options for YouTubeReporting#jobsReportsList.

interface JobsReportsListOptions {
createdAfter?: Date;
onBehalfOfContentOwner?: string;
pageSize?: number;
pageToken?: string;
startTimeAtOrAfter?: Date;
startTimeBefore?: Date;
}

§Properties

§
createdAfter?: Date
[src]

If set, only reports created after the specified date/time are returned.

§
onBehalfOfContentOwner?: string
[src]

The content owner's external ID on which behalf the user is acting on. If not set, the user is acting for himself (his own channel).

§
pageSize?: number
[src]

Requested page size. Server may return fewer report types than requested. If unspecified, server will pick an appropriate default.

§
pageToken?: string
[src]

A token identifying a page of results the server should return. Typically, this is the value of ListReportsResponse.next_page_token returned in response to the previous call to the ListReports method.

§
startTimeAtOrAfter?: Date
[src]

If set, only reports whose start time is greater than or equal the specified date/time are returned.

§
startTimeBefore?: Date
[src]

If set, only reports whose start time is smaller than the specified date/time are returned.