Class: Google::Apis::CloudbillingV1beta::GoogleCloudBillingPricesV1betaListPricesResponse

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
lib/google/apis/cloudbilling_v1beta/classes.rb,
lib/google/apis/cloudbilling_v1beta/representations.rb,
lib/google/apis/cloudbilling_v1beta/representations.rb

Overview

Response message for ListPrices.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudBillingPricesV1betaListPricesResponse

Returns a new instance of GoogleCloudBillingPricesV1betaListPricesResponse.



1804
1805
1806
# File 'lib/google/apis/cloudbilling_v1beta/classes.rb', line 1804

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

Instance Attribute Details

#next_page_tokenString

Token that can be sent as page_token in the subsequent request to retrieve the next page. If this field is empty, there are no subsequent pages. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


1797
1798
1799
# File 'lib/google/apis/cloudbilling_v1beta/classes.rb', line 1797

def next_page_token
  @next_page_token
end

#pricesArray<Google::Apis::CloudbillingV1beta::GoogleCloudBillingPricesV1betaPrice>

The returned publicly listed prices. Corresponds to the JSON property prices



1802
1803
1804
# File 'lib/google/apis/cloudbilling_v1beta/classes.rb', line 1802

def prices
  @prices
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1809
1810
1811
1812
# File 'lib/google/apis/cloudbilling_v1beta/classes.rb', line 1809

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