Class: Google::Apis::CloudbillingV1beta::GoogleCloudBillingPricesV1betaListPricesResponse
- Inherits:
-
Object
- Object
- Google::Apis::CloudbillingV1beta::GoogleCloudBillingPricesV1betaListPricesResponse
- 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
-
#next_page_token ⇒ String
Token that can be sent as
page_token
in the subsequent request to retrieve the next page. -
#prices ⇒ Array<Google::Apis::CloudbillingV1beta::GoogleCloudBillingPricesV1betaPrice>
The returned publicly listed prices.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudBillingPricesV1betaListPricesResponse
constructor
A new instance of GoogleCloudBillingPricesV1betaListPricesResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
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_token ⇒ String
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
1797 1798 1799 |
# File 'lib/google/apis/cloudbilling_v1beta/classes.rb', line 1797 def next_page_token @next_page_token end |
#prices ⇒ Array<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 |