class Google::Apis::ServicemanagementV1::ListServiceConfigsResponse

Response message for ListServiceConfigs method.

Attributes

next_page_token[RW]

The token of the next page of results. Corresponds to the JSON property `nextPageToken` @return [String]

service_configs[RW]

The list of service configuration resources. Corresponds to the JSON property `serviceConfigs` @return [Array<Google::Apis::ServicemanagementV1::Service>]

Public Class Methods

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