class Google::Apis::AppengineV1beta4::ListModulesResponse
Response message for Modules.ListModules.
Attributes
modules[RW]
The modules belonging to the requested application. Corresponds to the JSON property `modules` @return [Array<Google::Apis::AppengineV1beta4::Module>]
next_page_token[RW]
Continuation token for fetching the next page of results. Corresponds to the JSON property `nextPageToken` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/appengine_v1beta4/classes.rb, line 929 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_v1beta4/classes.rb, line 934 def update!(**args) @modules = args[:modules] if args.key?(:modules) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end