Class: Google::Apis::AdexchangebuyerV1_4::PricePerBuyer

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/adexchangebuyer_v1_4/classes.rb,
generated/google/apis/adexchangebuyer_v1_4/representations.rb,
generated/google/apis/adexchangebuyer_v1_4/representations.rb

Overview

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.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ PricePerBuyer

Returns a new instance of PricePerBuyer.



2610
2611
2612
# File 'generated/google/apis/adexchangebuyer_v1_4/classes.rb', line 2610

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#auction_tierString

Optional access type for this buyer. Corresponds to the JSON property auctionTier

Returns:

  • (String)


2597
2598
2599
# File 'generated/google/apis/adexchangebuyer_v1_4/classes.rb', line 2597

def auction_tier
  @auction_tier
end

#buyerGoogle::Apis::AdexchangebuyerV1_4::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). Corresponds to the JSON property buyer



2603
2604
2605
# File 'generated/google/apis/adexchangebuyer_v1_4/classes.rb', line 2603

def buyer
  @buyer
end

#priceGoogle::Apis::AdexchangebuyerV1_4::Price

The specified price Corresponds to the JSON property price



2608
2609
2610
# File 'generated/google/apis/adexchangebuyer_v1_4/classes.rb', line 2608

def price
  @price
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2615
2616
2617
2618
2619
# File 'generated/google/apis/adexchangebuyer_v1_4/classes.rb', line 2615

def update!(**args)
  @auction_tier = args[:auction_tier] if args.key?(:auction_tier)
  @buyer = args[:buyer] if args.key?(:buyer)
  @price = args[:price] if args.key?(:price)
end