class Google::Apis::AdexchangebuyerV1_4::Account

Configuration data for an Ad Exchange buyer account.

Attributes

apply_pretargeting_to_non_guaranteed_deals[RW]

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. Corresponds to the JSON property `applyPretargetingToNonGuaranteedDeals` @return [Boolean]

apply_pretargeting_to_non_guaranteed_deals?[RW]

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. Corresponds to the JSON property `applyPretargetingToNonGuaranteedDeals` @return [Boolean]

bidder_location[RW]

Your bidder locations that have distinct URLs. Corresponds to the JSON property `bidderLocation` @return [Array<Google::Apis::AdexchangebuyerV1_4::Account::BidderLocation>]

id[RW]

Account id. Corresponds to the JSON property `id` @return [Fixnum]

kind[RW]

Resource type. Corresponds to the JSON property `kind` @return [String]

maximum_active_creatives[RW]

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. Corresponds to the JSON property `maximumActiveCreatives` @return [Fixnum]

maximum_total_qps[RW]

The sum of all bidderLocation.maximumQps values cannot exceed this. Please contact your technical account manager if you need to change this. Corresponds to the JSON property `maximumTotalQps` @return [Fixnum]

number_active_creatives[RW]

The number of creatives that this account inserted or bid with in the last 30 days. Corresponds to the JSON property `numberActiveCreatives` @return [Fixnum]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/adexchangebuyer_v1_4/classes.rb, line 83
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/adexchangebuyer_v1_4/classes.rb, line 88
def update!(**args)
  @apply_pretargeting_to_non_guaranteed_deals = args[:apply_pretargeting_to_non_guaranteed_deals] if args.key?(:apply_pretargeting_to_non_guaranteed_deals)
  @bidder_location = args[:bidder_location] if args.key?(:bidder_location)
  @cookie_matching_nid = args[:cookie_matching_nid] if args.key?(:cookie_matching_nid)
  @cookie_matching_url = args[:cookie_matching_url] if args.key?(:cookie_matching_url)
  @id = args[:id] if args.key?(:id)
  @kind = args[:kind] if args.key?(:kind)
  @maximum_active_creatives = args[:maximum_active_creatives] if args.key?(:maximum_active_creatives)
  @maximum_total_qps = args[:maximum_total_qps] if args.key?(:maximum_total_qps)
  @number_active_creatives = args[:number_active_creatives] if args.key?(:number_active_creatives)
end