CustomBiddingScript
import type { CustomBiddingScript } from "https://googleapis.deno.dev/v1/displayvideo:v4.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;
script?: CustomBiddingScriptRef;
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 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.
§
script?: CustomBiddingScriptRef
[src]The reference to the uploaded script file.