class Google::Apis::ServiceusageV1::ListServicesResponse

Response message for the `ListServices` method.

Attributes

next_page_token[RW]

Token that can be passed to `ListServices` to resume a paginated query. Corresponds to the JSON property `nextPageToken` @return [String]

services[RW]

The available services for the requested project. Corresponds to the JSON property `services` @return [Array<Google::Apis::ServiceusageV1::GoogleApiServiceusageV1Service>]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/serviceusage_v1/classes.rb, line 2390
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/serviceusage_v1/classes.rb, line 2395
def update!(**args)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
  @services = args[:services] if args.key?(:services)
end