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 generated/google/apis/appengine_v1beta4/classes.rb, line 1449
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File generated/google/apis/appengine_v1beta4/classes.rb, line 1454
def update!(**args)
  @modules = args[:modules] if args.key?(:modules)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
end