class Google::Apis::AppengineV1::ListServicesResponse
Response message for Services.ListServices.
Attributes
next_page_token[RW]
Continuation token for fetching the next page of results. Corresponds to the JSON property `nextPageToken` @return [String]
services[RW]
The services belonging to the requested application. Corresponds to the JSON property `services` @return [Array<Google::Apis::AppengineV1::Service>]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/appengine_v1/classes.rb, line 1665 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/appengine_v1/classes.rb, line 1670 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @services = args[:services] if args.key?(:services) end