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

Endpoint

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

Bidder endpoint that receives bid requests.

interface Endpoint {
bidProtocol?:
| "BID_PROTOCOL_UNSPECIFIED"
| "GOOGLE_RTB"
| "OPENRTB_JSON"
| "OPENRTB_PROTOBUF";
maximumQps?: bigint;
readonly name?: string;
tradingLocation?:
| "TRADING_LOCATION_UNSPECIFIED"
| "US_WEST"
| "US_EAST"
| "EUROPE"
| "ASIA";
readonly url?: string;
}

§Properties

§
bidProtocol?: "BID_PROTOCOL_UNSPECIFIED" | "GOOGLE_RTB" | "OPENRTB_JSON" | "OPENRTB_PROTOBUF"
[src]

The protocol that the bidder endpoint is using.

§
maximumQps?: bigint
[src]

The maximum number of queries per second allowed to be sent to this server.

§
readonly name?: string
[src]

Output only. Name of the endpoint resource that must follow the pattern bidders/{bidderAccountId}/endpoints/{endpointId}, where {bidderAccountId} is the account ID of the bidder who operates this endpoint, and {endpointId} is a unique ID assigned by the server.

§
tradingLocation?: "TRADING_LOCATION_UNSPECIFIED" | "US_WEST" | "US_EAST" | "EUROPE" | "ASIA"
[src]

The trading location that bid requests should be sent from. See https://developers.google.com/authorized-buyers/rtb/peer-guide#trading-locations for further information.

§
readonly url?: string
[src]

Output only. The URL that bid requests should be sent to.