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

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/billingbudgets_v1beta1/classes.rb,
generated/google/apis/billingbudgets_v1beta1/representations.rb,
generated/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.



298
299
300
# File 'generated/google/apis/billingbudgets_v1beta1/classes.rb', line 298

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



290
291
292
# File 'generated/google/apis/billingbudgets_v1beta1/classes.rb', line 290

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)


296
297
298
# File 'generated/google/apis/billingbudgets_v1beta1/classes.rb', line 296

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



303
304
305
306
# File 'generated/google/apis/billingbudgets_v1beta1/classes.rb', line 303

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