Class: Google::Apis::CloudbillingV1::ListSkusResponse
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::CloudbillingV1::ListSkusResponse
 
- 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 ListSkus.
Instance Attribute Summary collapse
- 
  
    
      #next_page_token  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A token to retrieve the next page of results. 
- 
  
    
      #skus  ⇒ Array<Google::Apis::CloudbillingV1::Sku> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The list of public SKUs of the given service. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ ListSkusResponse 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of ListSkusResponse. 
- 
  
    
      #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) ⇒ ListSkusResponse
Returns a new instance of ListSkusResponse
| 403 404 405 | # File 'generated/google/apis/cloudbilling_v1/classes.rb', line 403 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 ListSkus 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
| 396 397 398 | # File 'generated/google/apis/cloudbilling_v1/classes.rb', line 396 def next_page_token @next_page_token end | 
#skus ⇒ Array<Google::Apis::CloudbillingV1::Sku>
The list of public SKUs of the given service.
Corresponds to the JSON property skus
| 401 402 403 | # File 'generated/google/apis/cloudbilling_v1/classes.rb', line 401 def skus @skus end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 408 409 410 411 | # File 'generated/google/apis/cloudbilling_v1/classes.rb', line 408 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @skus = args[:skus] if args.key?(:skus) end |