AI-generated Key Takeaways
-  The Apps Script API provides methods to list your script processes. 
-  The processes.listmethod returns metadata for processes you have run.
-  The processes.listScriptProcessesmethod returns metadata for processes run from a specific script project.
-  Both methods can be filtered to narrow down the results. 
This section provides an overview of the Apps Script API methods you can use to list your script processes .
 Results: Returns an array of  Process 
 
objects, each containing the metadata for a process you have run. This
        information includes the process type, status, start time, and duration.
 Options: You can define and provide a  ListUserProcessFilter 
 
object
        to filter the process list. Only processes which match 
 Results: Returns an array of  Process 
 
objects, each containing the metadata for a process run from a
        specifed script project. This
        information includes the process type, status, start time, and duration.
 Options: You can define and provide a  ListScriptProcessesFilter 
 
object
        to filter the process list. Only processes which match 

