Class: Google::Apis::AdexchangebuyerV1_3::BillingInfo

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/adexchangebuyer_v1_3/classes.rb,
generated/google/apis/adexchangebuyer_v1_3/representations.rb,
generated/google/apis/adexchangebuyer_v1_3/representations.rb

Overview

The configuration data for an Ad Exchange billing info.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ BillingInfo

Returns a new instance of BillingInfo.



180
181
182
# File 'generated/google/apis/adexchangebuyer_v1_3/classes.rb', line 180

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#account_idFixnum

Account id. Corresponds to the JSON property accountId

Returns:

  • (Fixnum)


161
162
163
# File 'generated/google/apis/adexchangebuyer_v1_3/classes.rb', line 161

def 
  @account_id
end

#account_nameString

Account name. Corresponds to the JSON property accountName

Returns:

  • (String)


166
167
168
# File 'generated/google/apis/adexchangebuyer_v1_3/classes.rb', line 166

def 
  @account_name
end

#billing_idArray<String>

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

Returns:

  • (Array<String>)


173
174
175
# File 'generated/google/apis/adexchangebuyer_v1_3/classes.rb', line 173

def billing_id
  @billing_id
end

#kindString

Resource type. Corresponds to the JSON property kind

Returns:

  • (String)


178
179
180
# File 'generated/google/apis/adexchangebuyer_v1_3/classes.rb', line 178

def kind
  @kind
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



185
186
187
188
189
190
# File 'generated/google/apis/adexchangebuyer_v1_3/classes.rb', line 185

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