class Google::Apis::AdexchangebuyerV1_4::BillingInfo
The configuration data for an Ad Exchange billing info.
Attributes
account_id[RW]
Account id. Corresponds to the JSON property `accountId` @return [Fixnum]
account_name[RW]
Account name. Corresponds to the JSON property `accountName` @return [String]
billing_id[RW]
A list of adgroup IDs associated with this particular account. These IDs may show up as part of a realtime bidding BidRequest, which indicates a bid request for this account. Corresponds to the JSON property `billingId` @return [Array<String>]
kind[RW]
Resource type. Corresponds to the JSON property `kind` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File generated/google/apis/adexchangebuyer_v1_4/classes.rb, line 287 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File generated/google/apis/adexchangebuyer_v1_4/classes.rb, line 292 def update!(**args) @account_id = args[:account_id] if args.key?(:account_id) @account_name = args[:account_name] if args.key?(:account_name) @billing_id = args[:billing_id] if args.key?(:billing_id) @kind = args[:kind] if args.key?(:kind) end