Struct google_adexchangebuyer1d4::PricePerBuyer[][src]

pub struct PricePerBuyer {
    pub auction_tier: Option<String>,
    pub buyer: Option<Buyer>,
    pub billed_buyer: Option<Buyer>,
    pub price: Option<Price>,
}

Used to specify pricing rules for buyers. Each PricePerBuyer in a product can become [0,1] deals. To check if there is a PricePerBuyer for a particular buyer we look for the most specific matching rule - we first look for a rule matching the buyer and otherwise look for a matching rule where no buyer is set.

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

Fields

Optional access type for this buyer.

The buyer who will pay this price. If unset, all buyers can pay this price (if the advertisers match, and there's no more specific rule matching the buyer).

Reference to the buyer that will get billed.

The specified price

Trait Implementations

impl Default for PricePerBuyer
[src]

Returns the "default value" for a type. Read more

impl Clone for PricePerBuyer
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for PricePerBuyer
[src]

Formats the value using the given formatter. Read more

impl Part for PricePerBuyer
[src]

Auto Trait Implementations