class Google::Apis::CloudbillingV1::ListProjectBillingInfoResponse
Request message for `ListProjectBillingInfoResponse`.
Attributes
next_page_token[RW]
A token to retrieve the next page of results. To retrieve the next page, call ` ListProjectBillingInfo` 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]
project_billing_info[RW]
A list of `ProjectBillingInfo` resources representing the projects associated with the billing account. Corresponds to the JSON property `projectBillingInfo` @return [Array<Google::Apis::CloudbillingV1::ProjectBillingInfo>]
Public Class Methods
new(**args)
click to toggle source
# File generated/google/apis/cloudbilling_v1/classes.rb, line 108 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File generated/google/apis/cloudbilling_v1/classes.rb, line 113 def update!(**args) @project_billing_info = args[:project_billing_info] if args.key?(:project_billing_info) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end