class Google::Apis::ScriptV1::ListUserProcessesResponse

Response with the list of Process resources.

Attributes

next_page_token[RW]

Token for the next page of results. If empty, there are no more pages remaining. Corresponds to the JSON property `nextPageToken` @return [String]

processes[RW]

List of processes matching request parameters. Corresponds to the JSON property `processes` @return [Array<Google::Apis::ScriptV1::GoogleAppsScriptTypeProcess>]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/script_v1/classes.rb, line 742
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/script_v1/classes.rb, line 747
def update!(**args)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
  @processes = args[:processes] if args.key?(:processes)
end