[][src]Struct google_adexchangebuyer1d4::AccountBidderLocation

pub struct AccountBidderLocation {
    pub url: Option<String>,
    pub region: Option<String>,
    pub bid_protocol: Option<String>,
    pub maximum_qps: Option<i32>,
}

Your bidder locations that have distinct URLs.

This type is not used in any activity, and only used as part of another schema.

Fields

url: Option<String>

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

region: Option<String>

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
bid_protocol: Option<String>

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
maximum_qps: Option<i32>

The maximum queries per second the Ad Exchange will send.

Trait Implementations

impl Clone for AccountBidderLocation[src]

impl Debug for AccountBidderLocation[src]

impl Default for AccountBidderLocation[src]

impl<'de> Deserialize<'de> for AccountBidderLocation[src]

impl NestedType for AccountBidderLocation[src]

impl Part for AccountBidderLocation[src]

impl Serialize for AccountBidderLocation[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Typeable for T where
    T: Any