class Google::Apis::ServicemanagementV1::ListServicesResponse

Response message for `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 returned services will only have the name field set. Corresponds to the JSON property `services` @return [Array<Google::Apis::ServicemanagementV1::ManagedService>]

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

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