Class: Google::Apis::ScriptV1::ListScriptProcessesResponse

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/script_v1/classes.rb,
lib/google/apis/script_v1/representations.rb,
lib/google/apis/script_v1/representations.rb

Overview

Response with the list of Process resources.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ListScriptProcessesResponse

Returns a new instance of ListScriptProcessesResponse.



706
707
708
# File 'lib/google/apis/script_v1/classes.rb', line 706

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#next_page_tokenString

Token for the next page of results. If empty, there are no more pages remaining. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


699
700
701
# File 'lib/google/apis/script_v1/classes.rb', line 699

def next_page_token
  @next_page_token
end

#processesArray<Google::Apis::ScriptV1::GoogleAppsScriptTypeProcess>

List of processes matching request parameters. Corresponds to the JSON property processes



704
705
706
# File 'lib/google/apis/script_v1/classes.rb', line 704

def processes
  @processes
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



711
712
713
714
# File 'lib/google/apis/script_v1/classes.rb', line 711

def update!(**args)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
  @processes = args[:processes] if args.key?(:processes)
end