class Google::Apis::BillingbudgetsV1beta1::GoogleCloudBillingBudgetsV1beta1ListBudgetsResponse
Response for ListBudgets
Attributes
budgets[RW]
List of the budgets owned by the requested billing account. Corresponds to the JSON property `budgets` @return [Array<Google::Apis::BillingbudgetsV1beta1::GoogleCloudBillingBudgetsV1beta1Budget>]
next_page_token[RW]
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` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/billingbudgets_v1beta1/classes.rb, line 360 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/billingbudgets_v1beta1/classes.rb, line 365 def update!(**args) @budgets = args[:budgets] if args.key?(:budgets) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end