class Google::Apis::CloudbillingV1::ListBillingAccountsResponse
Response message for `ListBillingAccounts`.
Attributes
billing_accounts[RW]
A list of billing accounts. Corresponds to the JSON property `billingAccounts` @return [Array<Google::Apis::CloudbillingV1::BillingAccount>]
next_page_token[RW]
A token to retrieve the next page of results. To retrieve the next page, call ` ListBillingAccounts` again with the `page_token` field set to this value. This field is empty if there are no more results to retrieve. Corresponds to the JSON property `nextPageToken` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/cloudbilling_v1/classes.rb, line 383 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/cloudbilling_v1/classes.rb, line 388 def update!(**args) @billing_accounts = args[:billing_accounts] if args.key?(:billing_accounts) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end