class Google::Apis::AdexchangebuyerV1_3::Account

Configuration data for an Ad Exchange buyer account.

Attributes

bidder_location[RW]

Your bidder locations that have distinct URLs. Corresponds to the JSON property `bidderLocation` @return [Array<Google::Apis::AdexchangebuyerV1_3::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_3/classes.rb, line 74
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_3/classes.rb, line 79
def update!(**args)
  @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