class Google::Apis::AppengineV1beta::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::AppengineV1beta::Service>]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/appengine_v1beta/classes.rb, line 1744 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_v1beta/classes.rb, line 1749 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @services = args[:services] if args.key?(:services) end