class Google::Apis::CloudbillingV1::ListServicesResponse

Response message for `ListServices`.

Attributes

next_page_token[RW]

A token to retrieve the next page of results. To retrieve the next page, call ` ListServices` 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]

services[RW]

A list of services. Corresponds to the JSON property `services` @return [Array<Google::Apis::CloudbillingV1::Service>]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/cloudbilling_v1/classes.rb, line 438
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 443
def update!(**args)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
  @services = args[:services] if args.key?(:services)
end