Class: Google::Apis::CloudbillingV1::ListSkusResponse

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
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

Instance Method Summary collapse

Methods included from Google::Apis::Core::JsonObjectSupport

#to_json

Methods included from Google::Apis::Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ ListSkusResponse

Returns a new instance of ListSkusResponse.



508
509
510
# File 'generated/google/apis/cloudbilling_v1/classes.rb', line 508

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

Instance Attribute Details

#next_page_tokenString

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

Returns:

  • (String)


501
502
503
# File 'generated/google/apis/cloudbilling_v1/classes.rb', line 501

def next_page_token
  @next_page_token
end

#skusArray<Google::Apis::CloudbillingV1::Sku>

The list of public SKUs of the given service. Corresponds to the JSON property skus



506
507
508
# File 'generated/google/apis/cloudbilling_v1/classes.rb', line 506

def skus
  @skus
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



513
514
515
516
# File 'generated/google/apis/cloudbilling_v1/classes.rb', line 513

def update!(**args)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
  @skus = args[:skus] if args.key?(:skus)
end