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

EnterpriseTopazSidekickRankingParams

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

Ranking params.

interface EnterpriseTopazSidekickRankingParams {
endTimeMs?: bigint;
priority?:
| "UNKNOWN"
| "CRITICAL"
| "IMPORTANT"
| "HIGH"
| "NORMAL"
| "BEST_EFFORT";
score?: number;
spanMs?: bigint;
startTimeMs?: bigint;
type?: "FIXED" | "FLEXIBLE";
}

§Properties

§
endTimeMs?: bigint
[src]

The end-time that this object will expect to occur. If the type is marked as FIXED, then this end-time will persist after bidding. If the type is marked as FLEXIBLE, this field is NOT expected to be filled and will be filled in after it has won a bid. Expected to be set when type is set to FIXED.

§
priority?: "UNKNOWN" | "CRITICAL" | "IMPORTANT" | "HIGH" | "NORMAL" | "BEST_EFFORT"
[src]

The priority to determine between objects that have the same start_time_ms The lower-value of priority == ranked higher. Max-priority = 0. Expected to be set for all types.

§
score?: number
[src]

The score of the card to be used to break priority-ties

§
spanMs?: bigint
[src]

The span that this card will take in the stream Expected to be set when type is set to FLEXIBLE.

§
startTimeMs?: bigint
[src]

The start-time that this object will bid-for If the type is marked as FIXED, then this start-time will persist after bidding. If the type is marked as FLEXIBLE, then it will occur at the given time or sometime after the requested time. Expected to be set for all types.

§
type?: "FIXED" | "FLEXIBLE"
[src]

The packing type of this object.