Class: Google::Apis::CloudbillingV1::ListProjectBillingInfoResponse
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::CloudbillingV1::ListProjectBillingInfoResponse
 
- Defined in:
- generated/google/apis/cloudbilling_v1/classes.rb,
 generated/google/apis/cloudbilling_v1/representations.rb,
 generated/google/apis/cloudbilling_v1/representations.rb
Overview
Request message for ListProjectBillingInfoResponse.
Instance Attribute Summary collapse
- 
  
    
      #next_page_token  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A token to retrieve the next page of results. 
- 
  
    
      #project_billing_info  ⇒ Array<Google::Apis::CloudbillingV1::ProjectBillingInfo> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A list of ProjectBillingInforesources representing the projects associated with the billing account.
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ ListProjectBillingInfoResponse 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of ListProjectBillingInfoResponse. 
- 
  
    
      #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) ⇒ ListProjectBillingInfoResponse
Returns a new instance of ListProjectBillingInfoResponse
| 349 350 351 | # File 'generated/google/apis/cloudbilling_v1/classes.rb', line 349 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#next_page_token ⇒ String
A token to retrieve the next page of results. To retrieve the next page,
call ListProjectBillingInfo 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
| 341 342 343 | # File 'generated/google/apis/cloudbilling_v1/classes.rb', line 341 def next_page_token @next_page_token end | 
#project_billing_info ⇒ Array<Google::Apis::CloudbillingV1::ProjectBillingInfo>
A list of ProjectBillingInfo resources representing the projects
associated with the billing account.
Corresponds to the JSON property projectBillingInfo
| 347 348 349 | # File 'generated/google/apis/cloudbilling_v1/classes.rb', line 347 def project_billing_info @project_billing_info end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 354 355 356 357 | # File 'generated/google/apis/cloudbilling_v1/classes.rb', line 354 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @project_billing_info = args[:project_billing_info] if args.key?(:project_billing_info) end |