Class: Google::Apis::CloudbillingV1::ListBillingAccountsResponse
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::CloudbillingV1::ListBillingAccountsResponse
 
- Defined in:
- generated/google/apis/cloudbilling_v1/classes.rb,
 generated/google/apis/cloudbilling_v1/representations.rb,
 generated/google/apis/cloudbilling_v1/representations.rb
Overview
Response message for ListBillingAccounts.
Instance Attribute Summary collapse
- 
  
    
      #billing_accounts  ⇒ Array<Google::Apis::CloudbillingV1::BillingAccount> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A list of billing accounts. 
- 
  
    
      #next_page_token  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A token to retrieve the next page of results. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ ListBillingAccountsResponse 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of ListBillingAccountsResponse. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ ListBillingAccountsResponse
Returns a new instance of ListBillingAccountsResponse
| 321 322 323 | # File 'generated/google/apis/cloudbilling_v1/classes.rb', line 321 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#billing_accounts ⇒ Array<Google::Apis::CloudbillingV1::BillingAccount>
A list of billing accounts.
Corresponds to the JSON property billingAccounts
| 312 313 314 | # File 'generated/google/apis/cloudbilling_v1/classes.rb', line 312 def billing_accounts @billing_accounts end | 
#next_page_token ⇒ String
A token to retrieve the next page of results. To retrieve the next page,
call ListBillingAccounts again with the page_token field set to this
value. This field is empty if there are no more results to retrieve.
Corresponds to the JSON property nextPageToken
| 319 320 321 | # File 'generated/google/apis/cloudbilling_v1/classes.rb', line 319 def next_page_token @next_page_token end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 326 327 328 329 | # File 'generated/google/apis/cloudbilling_v1/classes.rb', line 326 def update!(**args) @billing_accounts = args[:billing_accounts] if args.key?(:billing_accounts) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |