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

FinalizedDeal

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

A finalized deal is a snapshot of the deal when both buyer and seller accept the deal. The buyer or seller can update the deal after it's been finalized and renegotiate on the deal targeting, terms and other fields, while at the same time the finalized snapshot of the deal can still be retrieved using this API. The finalized deal contains a copy of the deal as it existed when most recently finalized, as well as fields related to deal serving such as pause/resume status, RTB metrics, and more.

interface FinalizedDeal {
deal?: Deal;
dealPausingInfo?: DealPausingInfo;
dealServingStatus?:
| "DEAL_SERVING_STATUS_UNSPECIFIED"
| "ACTIVE"
| "ENDED"
| "PAUSED_BY_BUYER"
| "PAUSED_BY_SELLER";
name?: string;
readyToServe?: boolean;
rtbMetrics?: RtbMetrics;
}

§Properties

§
deal?: Deal
[src]

A copy of the Deal made upon finalization. During renegotiation, this will reflect the last finalized deal before renegotiation was initiated.

§
dealPausingInfo?: DealPausingInfo
[src]

Information related to deal pausing for the deal.

§
dealServingStatus?: "DEAL_SERVING_STATUS_UNSPECIFIED" | "ACTIVE" | "ENDED" | "PAUSED_BY_BUYER" | "PAUSED_BY_SELLER"
[src]

Serving status of the deal.

§
name?: string
[src]

The resource name of the finalized deal. Format: buyers/{accountId}/finalizedDeals/{finalizedDealId}

§
readyToServe?: boolean
[src]

Whether the Programmatic Guaranteed deal is ready for serving.

§
rtbMetrics?: RtbMetrics
[src]

Real-time bidding metrics for this deal.