Show / Hide Table of Contents

Class Account.BidderLocationData

Your bidder locations that have distinct URLs.

Inheritance
System.Object
Account.BidderLocationData
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.AdExchangeBuyer.v1_4.Data
Assembly: Google.Apis.AdExchangeBuyer.v1_4.dll
Syntax
public class BidderLocationData

Properties

BidProtocol

The protocol that the bidder endpoint is using. OpenRTB protocols with prefix PROTOCOL_OPENRTB_PROTOBUF use proto buffer, otherwise use JSON. Allowed values: - PROTOCOL_ADX - PROTOCOL_OPENRTB_2_2 - PROTOCOL_OPENRTB_2_3 - PROTOCOL_OPENRTB_2_4 - PROTOCOL_OPENRTB_2_5 - PROTOCOL_OPENRTB_PROTOBUF_2_3 - PROTOCOL_OPENRTB_PROTOBUF_2_4 - PROTOCOL_OPENRTB_PROTOBUF_2_5

Declaration
[JsonProperty("bidProtocol")]
public virtual string BidProtocol { get; set; }
Property Value
Type Description
System.String

MaximumQps

The maximum queries per second the Ad Exchange will send.

Declaration
[JsonProperty("maximumQps")]
public virtual int? MaximumQps { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

Region

The geographical region the Ad Exchange should send requests from. Only used by some quota systems, but always setting the value is recommended. Allowed values: - ASIA - EUROPE - US_EAST - US_WEST

Declaration
[JsonProperty("region")]
public virtual string Region { get; set; }
Property Value
Type Description
System.String

Url

The URL to which the Ad Exchange will send bid requests.

Declaration
[JsonProperty("url")]
public virtual string Url { get; set; }
Property Value
Type Description
System.String
In This Article
Back to top