[null,null,["Last updated 2025-08-25 UTC."],[[["\u003cp\u003eThis script provides methods to access information about the current script execution, such as remaining time and script name.\u003c/p\u003e\n"],["\u003cp\u003eMethods \u003ccode\u003egetRemainingCreateQuota\u003c/code\u003e and \u003ccode\u003egetRemainingGetQuota\u003c/code\u003e are deprecated as there are no longer limits on entity creation or fetching.\u003c/p\u003e\n"],["\u003cp\u003e\u003ccode\u003egetRemainingTime\u003c/code\u003e returns the remaining execution time in seconds, \u003ccode\u003egetScriptName\u003c/code\u003e returns the script's name, and \u003ccode\u003eisPreview\u003c/code\u003e indicates if the script is in preview mode.\u003c/p\u003e\n"]]],[],null,["# AdsApp.ExecutionInfo\n\nMiscellaneous information about the current script execution.\n\n### Methods:\n\n| Member | Type | Description |\n|-------------------------------------------------------|-----------|--------------------------------------------------------------------------------------------------------|\n| [getRemainingCreateQuota()](#getRemainingCreateQuota) | `int` | Returns the remaining number of Google Ads entities the script is allowed to create in this execution. |\n| [getRemainingGetQuota()](#getRemainingGetQuota) | `int` | Returns the remaining number of Google Ads entities the script is allowed to fetch in this execution. |\n| [getRemainingTime()](#getRemainingTime) | `int` | Returns the remaining time in seconds the script is allowed to execute. |\n| [getScriptName()](#getScriptName) | `String` | Returns the name of the current script being executed. |\n| [isPreview()](#isPreview) | `boolean` | Returns `true` if the script is currently being previewed, or `false` if it is a live execution. |\n\ngetRemainingCreateQuota()\n-------------------------\n\nReturns the remaining number of Google Ads entities the script is allowed to create in this execution. See the 'Limits' page for more information. **Deprecated.**There is no longer a limit on the number of entities a script can create in a single execution.\n\n### Return values:\n\n| Type | Description |\n|-------|------------------------------------------------------------------------------------------------|\n| `int` | The remaining number of Google Ads entities the script is allowed to create in this execution. |\n\ngetRemainingGetQuota()\n----------------------\n\nReturns the remaining number of Google Ads entities the script is allowed to fetch in this execution. See the 'Limits' page for more information. **Deprecated.**There is no longer a limit on the number of entities a script can fetch in a single execution.\n\n### Return values:\n\n| Type | Description |\n|-------|-----------------------------------------------------------------------------------------------|\n| `int` | The remaining number of Google Ads entities the script is allowed to fetch in this execution. |\n\n`getRemainingTime()`\n--------------------\n\nReturns the remaining time in seconds the script is allowed to execute. See the 'Limits' page for more information.\n\n### Return values:\n\n| Type | Description |\n|-------|-----------------------------------------------------------------|\n| `int` | The remaining time in seconds the script is allowed to execute. |\n\n`getScriptName()`\n-----------------\n\nReturns the name of the current script being executed.\n\n### Return values:\n\n| Type | Description |\n|----------|------------------------------------------------------------------|\n| `String` | A string representing the name of current script being executed. |\n\n`isPreview()`\n-------------\n\nReturns `true` if the script is currently being previewed, or `false` if it is a live execution.\n\n### Return values:\n\n| Type | Description |\n|-----------|------------------------------------------------------------------------------------------|\n| `boolean` | `true` if the script is currently being previewed, or `false` if it is a live execution. |"]]