Class: Google::Apis::ScriptV1::ListScriptProcessesResponse
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::ScriptV1::ListScriptProcessesResponse
 
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/script_v1/classes.rb,
 generated/google/apis/script_v1/representations.rb,
 generated/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)  ⇒ ListScriptProcessesResponse 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of ListScriptProcessesResponse. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ListScriptProcessesResponse
Returns a new instance of ListScriptProcessesResponse
| 771 772 773 | # File 'generated/google/apis/script_v1/classes.rb', line 771 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
| 764 765 766 | # File 'generated/google/apis/script_v1/classes.rb', line 764 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
| 769 770 771 | # File 'generated/google/apis/script_v1/classes.rb', line 769 def processes @processes end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 776 777 778 779 | # File 'generated/google/apis/script_v1/classes.rb', line 776 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @processes = args[:processes] if args.key?(:processes) end |