class Google::Apis::AdexchangebuyerV1_3::Account
Configuration data for an Ad Exchange buyer account.
Attributes
Your bidder locations that have distinct URLs. Corresponds to the JSON property `bidderLocation` @return [Array<Google::Apis::AdexchangebuyerV1_3::Account::BidderLocation>]
Account id. Corresponds to the JSON property `id` @return [Fixnum]
Resource type. Corresponds to the JSON property `kind` @return [String]
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]
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]
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
# File generated/google/apis/adexchangebuyer_v1_3/classes.rb, line 74 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File generated/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