Class: Google::Apis::BillingbudgetsV1::GoogleCloudBillingBudgetsV1ListBudgetsResponse

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

Overview

Response for ListBudgets

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudBillingBudgetsV1ListBudgetsResponse

Returns a new instance of GoogleCloudBillingBudgetsV1ListBudgetsResponse.



218
219
220
# File 'generated/google/apis/billingbudgets_v1/classes.rb', line 218

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

Instance Attribute Details

#budgetsArray<Google::Apis::BillingbudgetsV1::GoogleCloudBillingBudgetsV1Budget>

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



210
211
212
# File 'generated/google/apis/billingbudgets_v1/classes.rb', line 210

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)


216
217
218
# File 'generated/google/apis/billingbudgets_v1/classes.rb', line 216

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



223
224
225
226
# File 'generated/google/apis/billingbudgets_v1/classes.rb', line 223

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