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

PublisherConnection

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

An Open Bidding exchange's connection to a publisher. This is initiated by the publisher for the bidder to review. If approved by the bidder, this means that the bidder agrees to receive bid requests from the publisher.

interface PublisherConnection {
biddingState?:
| "STATE_UNSPECIFIED"
| "PENDING"
| "REJECTED"
| "APPROVED";
readonly createTime?: Date;
readonly displayName?: string;
readonly name?: string;
readonly publisherPlatform?: "PUBLISHER_PLATFORM_UNSPECIFIED" | "GOOGLE_AD_MANAGER" | "ADMOB";
}

§Properties

§
biddingState?: "STATE_UNSPECIFIED" | "PENDING" | "REJECTED" | "APPROVED"
[src]

Whether the publisher has been approved by the bidder.

§
readonly createTime?: Date
[src]

Output only. The time at which the publisher initiated a connection with the bidder (irrespective of if or when the bidder approves it). This is subsequently updated if the publisher revokes and re-initiates the connection.

§
readonly displayName?: string
[src]

Output only. Publisher display name.

§
readonly name?: string
[src]

Output only. Name of the publisher connection. This follows the pattern bidders/{bidder}/publisherConnections/{publisher}, where {bidder} represents the account ID of the bidder, and {publisher} is the ads.txt/app-ads.txt publisher ID.

§
readonly publisherPlatform?: "PUBLISHER_PLATFORM_UNSPECIFIED" | "GOOGLE_AD_MANAGER" | "ADMOB"
[src]

Output only. Whether the publisher is an Ad Manager or AdMob publisher.