Struct google_adexchangebuyer1d4::PricePerBuyer [] [src]

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

Used to specify pricing rules for buyers/advertisers. Each PricePerBuyer in an product can become [0,1] deals. To check if there is a PricePerBuyer for a particular buyer or buyer/advertiser pair, we look for the most specific matching rule - we first look for a rule matching the buyer and advertiser, next a rule with the buyer but an empty advertiser list, 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).

The specified price

Trait Implementations

impl Debug for PricePerBuyer
[src]

Formats the value using the given formatter.

impl Clone for PricePerBuyer
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Default for PricePerBuyer
[src]

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

impl Part for PricePerBuyer
[src]