Show / Hide Table of Contents

Class Account

Configuration data for an Ad Exchange buyer account.

Inheritance
System.Object
Account
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 Account : IDirectResponseSchema

Properties

ApplyPretargetingToNonGuaranteedDeals

When this is false, bid requests that include a deal ID for a private auction or preferred deal are always sent to your bidder. When true, all active pretargeting configs will be applied to private auctions and preferred deals. Programmatic Guaranteed deals (when enabled) are always sent to your bidder.

Declaration
[JsonProperty("applyPretargetingToNonGuaranteedDeals")]
public virtual bool? ApplyPretargetingToNonGuaranteedDeals { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

BidderLocation

Your bidder locations that have distinct URLs.

Declaration
[JsonProperty("bidderLocation")]
public virtual IList<Account.BidderLocationData> BidderLocation { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<Account.BidderLocationData>

CookieMatchingNid

The nid parameter value used in cookie match requests. Please contact your technical account manager if you need to change this.

Declaration
[JsonProperty("cookieMatchingNid")]
public virtual string CookieMatchingNid { get; set; }
Property Value
Type Description
System.String

CookieMatchingUrl

The base URL used in cookie match requests.

Declaration
[JsonProperty("cookieMatchingUrl")]
public virtual string CookieMatchingUrl { get; set; }
Property Value
Type Description
System.String

ETag

The ETag of the item.

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

Id

Account id.

Declaration
[JsonProperty("id")]
public virtual int? Id { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

Kind

Resource type.

Declaration
[JsonProperty("kind")]
public virtual string Kind { get; set; }
Property Value
Type Description
System.String

MaximumActiveCreatives

The maximum number of active creatives that an account can have, where a creative is active if it was inserted or bid with in the last 30 days. Please contact your technical account manager if you need to change this.

Declaration
[JsonProperty("maximumActiveCreatives")]
public virtual int? MaximumActiveCreatives { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

MaximumTotalQps

The sum of all bidderLocation.maximumQps values cannot exceed this. Please contact your technical account manager if you need to change this.

Declaration
[JsonProperty("maximumTotalQps")]
public virtual int? MaximumTotalQps { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

NumberActiveCreatives

The number of creatives that this account inserted or bid with in the last 30 days.

Declaration
[JsonProperty("numberActiveCreatives")]
public virtual int? NumberActiveCreatives { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

Implements

Google.Apis.Requests.IDirectResponseSchema
In This Article
Back to top