Class: Google::Apis::BillingbudgetsV1beta1::GoogleCloudBillingBudgetsV1beta1ListBudgetsResponse

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

Overview

Response for ListBudgets

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudBillingBudgetsV1beta1ListBudgetsResponse

Returns a new instance of GoogleCloudBillingBudgetsV1beta1ListBudgetsResponse.



348
349
350
# File 'lib/google/apis/billingbudgets_v1beta1/classes.rb', line 348

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

Instance Attribute Details

#budgetsArray<Google::Apis::BillingbudgetsV1beta1::GoogleCloudBillingBudgetsV1beta1Budget>

List of the budgets owned by the requested billing account. Corresponds to the JSON property budgets



340
341
342
# File 'lib/google/apis/billingbudgets_v1beta1/classes.rb', line 340

def budgets
  @budgets
end

#next_page_tokenString

If not empty, indicates that there may be more budgets that match the request; this value should be passed in a new ListBudgetsRequest. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


346
347
348
# File 'lib/google/apis/billingbudgets_v1beta1/classes.rb', line 346

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



353
354
355
356
# File 'lib/google/apis/billingbudgets_v1beta1/classes.rb', line 353

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