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

AuctionPackage

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

Defines a segment of inventory that buyer wants to buy. It's created by buyer and could be shared with multiple buyers.

interface AuctionPackage {
readonly createTime?: Date;
readonly creator?: string;
readonly description?: string;
displayName?: string;
readonly eligibleSeatIds?: string[];
name?: string;
readonly subscribedBuyers?: string[];
readonly subscribedClients?: string[];
readonly subscribedMediaPlanners?: MediaPlanner[];
readonly updateTime?: Date;
}

§Properties

§
readonly createTime?: Date
[src]

Output only. Time the auction package was created.

§
readonly creator?: string
[src]

Output only. The buyer that created this auction package. Format: buyers/{buyerAccountId}

§
readonly description?: string
[src]

Output only. A description of the auction package.

§
displayName?: string
[src]

The display_name assigned to the auction package.

§
readonly eligibleSeatIds?: string[]
[src]

Output only. If set, this field contains the list of DSP specific seat ids set by media planners that are eligible to transact on this deal. The seat ID is in the calling DSP's namespace.

§
name?: string
[src]

Immutable. The unique identifier for the auction package. Format: buyers/{accountId}/auctionPackages/{auctionPackageId} The auction_package_id part of name is sent in the BidRequest to all RTB bidders and is returned as deal_id by the bidder in the BidResponse.

§
readonly subscribedBuyers?: string[]
[src]

Output only. The list of buyers that are subscribed to the AuctionPackage. This field is only populated when calling as a bidder. Format: buyers/{buyerAccountId}

§
readonly subscribedClients?: string[]
[src]

Output only. When calling as a buyer, the list of clients of the current buyer that are subscribed to the AuctionPackage. When calling as a bidder, the list of clients that are subscribed to the AuctionPackage owned by the bidder or its buyers. Format: buyers/{buyerAccountId}/clients/{clientAccountId}

§
readonly subscribedMediaPlanners?: MediaPlanner[]
[src]

Output only. The list of media planners that are subscribed to the AuctionPackage. This field is only populated when calling as a bidder.

§
readonly updateTime?: Date
[src]

Output only. Time the auction package was last updated. This value is only increased when this auction package is updated but never when a buyer subscribed.