Class PricePerBuyer
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.
Inheritance
System.Object
PricePerBuyer
Implements
Google.Apis.Requests.IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.AdExchangeBuyer.v1_4.Data
Assembly: Google.Apis.AdExchangeBuyer.v1_4.dll
Syntax
public class PricePerBuyer : IDirectResponseSchema
Properties
AuctionTier
Optional access type for this buyer.
Declaration
[JsonProperty("auctionTier")]
public virtual string AuctionTier { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String |
BilledBuyer
Reference to the buyer that will get billed.
Declaration
[JsonProperty("billedBuyer")]
public virtual Buyer BilledBuyer { get; set; }
Property Value
| Type | Description |
|---|---|
| Buyer |
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 |
|---|---|
| System.String |
Price
The specified price
Declaration
[JsonProperty("price")]
public virtual Price Price { get; set; }
Property Value
| Type | Description |
|---|---|
| Price |
Implements
Google.Apis.Requests.IDirectResponseSchema