Class: Google::Apis::AdexchangebuyerV1_3::BillingInfo
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::AdexchangebuyerV1_3::BillingInfo
 
- 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
- 
  
    
      #account_id  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Account id. 
- 
  
    
      #account_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Account name. 
- 
  
    
      #billing_id  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A list of adgroup IDs associated with this particular account. 
- 
  
    
      #kind  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Resource type. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ BillingInfo 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of BillingInfo. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
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_id ⇒ Fixnum
Account id.
Corresponds to the JSON property accountId
| 161 162 163 | # File 'generated/google/apis/adexchangebuyer_v1_3/classes.rb', line 161 def account_id @account_id end | 
#account_name ⇒ String
Account name.
Corresponds to the JSON property accountName
| 166 167 168 | # File 'generated/google/apis/adexchangebuyer_v1_3/classes.rb', line 166 def account_name @account_name end | 
#billing_id ⇒ Array<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
| 173 174 175 | # File 'generated/google/apis/adexchangebuyer_v1_3/classes.rb', line 173 def billing_id @billing_id end | 
#kind ⇒ String
Resource type.
Corresponds to the JSON property kind
| 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 |