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

ReportStatus

import type { ReportStatus } from "https://googleapis.deno.dev/v1/doubleclickbidmanager:v2.ts";

The status of a report.

interface ReportStatus {
readonly finishTime?: Date;
format?: "FORMAT_UNSPECIFIED" | "CSV" | "XLSX";
readonly state?:
| "STATE_UNSPECIFIED"
| "QUEUED"
| "RUNNING"
| "DONE"
| "FAILED";
}

§Properties

§
readonly finishTime?: Date
[src]

Output only. The timestamp of when report generation finished successfully or in failure. This field will not be set unless state is DONE or FAILED.

§
format?: "FORMAT_UNSPECIFIED" | "CSV" | "XLSX"
[src]

The format of the generated report file.

§
readonly state?: "STATE_UNSPECIFIED" | "QUEUED" | "RUNNING" | "DONE" | "FAILED"
[src]

Output only. The state of the report generation.