class Google::Apis::CloudbillingV1::ListSkusResponse

Response message for `ListSkus`.

Attributes

next_page_token[RW]

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` @return [String]

skus[RW]

The list of public SKUs of the given service. Corresponds to the JSON property `skus` @return [Array<Google::Apis::CloudbillingV1::Sku>]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/cloudbilling_v1/classes.rb, line 465
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/cloudbilling_v1/classes.rb, line 470
def update!(**args)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
  @skus = args[:skus] if args.key?(:skus)
end