Class: Google::Apis::ScriptV1::ListUserProcessesResponse
- Inherits:
-
Object
- Object
- Google::Apis::ScriptV1::ListUserProcessesResponse
- 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
-
#next_page_token ⇒ String
Token for the next page of results.
-
#processes ⇒ Array<Google::Apis::ScriptV1::GoogleAppsScriptTypeProcess>
List of processes matching request parameters.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListUserProcessesResponse
constructor
A new instance of ListUserProcessesResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListUserProcessesResponse
Returns a new instance of ListUserProcessesResponse.
753 754 755 |
# File 'lib/google/apis/script_v1/classes.rb', line 753 def initialize(**args) update!(**args) end |
Instance Attribute Details
#next_page_token ⇒ String
Token for the next page of results. If empty, there are no more pages
remaining.
Corresponds to the JSON property nextPageToken
746 747 748 |
# File 'lib/google/apis/script_v1/classes.rb', line 746 def next_page_token @next_page_token end |
#processes ⇒ Array<Google::Apis::ScriptV1::GoogleAppsScriptTypeProcess>
List of processes matching request parameters.
Corresponds to the JSON property processes
751 752 753 |
# File 'lib/google/apis/script_v1/classes.rb', line 751 def processes @processes end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
758 759 760 761 |
# File 'lib/google/apis/script_v1/classes.rb', line 758 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @processes = args[:processes] if args.key?(:processes) end |