Show / Hide Table of Contents

Class PricePerBuyer

Used to specify pricing rules for buyers/advertisers. Each PricePerBuyer in a product can become 0 or 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.

Inheritance
object
PricePerBuyer
Implements
IDirectResponseSchema
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Google.Apis.AdExchangeBuyerII.v2beta1.Data
Assembly: Google.Apis.AdExchangeBuyerII.v2beta1.dll
Syntax
public class PricePerBuyer : IDirectResponseSchema

Properties

AdvertiserIds

The list of advertisers for this price when associated with this buyer. If empty, all advertisers with this buyer pay this price.

Declaration
[JsonProperty("advertiserIds")]
public virtual IList<string> AdvertiserIds { get; set; }
Property Value
Type Description
IList<string>

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).

Declaration
[JsonProperty("buyer")]
public virtual Buyer Buyer { get; set; }
Property Value
Type Description
Buyer

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
string

Price

The specified price.

Declaration
[JsonProperty("price")]
public virtual Price Price { get; set; }
Property Value
Type Description
Price

Implements

IDirectResponseSchema
In this article
Back to top Generated by DocFX