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

CustomBiddingScript

import type { CustomBiddingScript } from "https://googleapis.deno.dev/v1/displayvideo:v3.ts";

A single custom bidding script.

interface CustomBiddingScript {
readonly active?: boolean;
readonly createTime?: Date;
readonly customBiddingAlgorithmId?: bigint;
readonly customBiddingScriptId?: bigint;
readonly errors?: ScriptError[];
readonly name?: string;
readonly state?:
| "STATE_UNSPECIFIED"
| "ACCEPTED"
| "REJECTED"
| "PENDING";
}

§Properties

§
readonly active?: boolean
[src]

Output only. Whether the script is currently being used for scoring by the parent algorithm.

§
readonly createTime?: Date
[src]

Output only. The time when the script was created.

§
readonly customBiddingAlgorithmId?: bigint
[src]

Output only. The unique ID of the custom bidding algorithm the script belongs to.

§
readonly customBiddingScriptId?: bigint
[src]

Output only. The unique ID of the custom bidding script.

§
readonly errors?: ScriptError[]
[src]

Output only. Error details of a rejected custom bidding script. This field will only be populated when state is REJECTED.

§
readonly name?: string
[src]

Output only. The resource name of the custom bidding script.

§

The reference to the uploaded script file.

§
readonly state?: "STATE_UNSPECIFIED" | "ACCEPTED" | "REJECTED" | "PENDING"
[src]

Output only. The state of the custom bidding script.