Un oggetto che fornisce il valore restituito di una funzione eseguita utilizzando l'API Apps Script. Se la funzione script viene restituita correttamente, il campo response del corpo della risposta contiene questo oggetto ExecutionResponse.
Il valore restituito della funzione script. Il tipo corrisponde al tipo di oggetto restituito in Apps Script. Le funzioni chiamate utilizzando l'API Apps Script non possono restituire oggetti specifici di Apps Script (ad esempio, Document o Calendar); possono restituire solo tipi primitivi come string, number, array, object o boolean.
[[["Facile da capire","easyToUnderstand","thumb-up"],["Il problema è stato risolto","solvedMyProblem","thumb-up"],["Altra","otherUp","thumb-up"]],[["Mancano le informazioni di cui ho bisogno","missingTheInformationINeed","thumb-down"],["Troppo complicato/troppi passaggi","tooComplicatedTooManySteps","thumb-down"],["Obsoleti","outOfDate","thumb-down"],["Problema di traduzione","translationIssue","thumb-down"],["Problema relativo a esempi/codice","samplesCodeIssue","thumb-down"],["Altra","otherDown","thumb-down"]],["Ultimo aggiornamento 2025-07-26 UTC."],[[["\u003cp\u003e\u003ccode\u003eExecutionResponse\u003c/code\u003e objects represent the results of Apps Script functions executed via the Apps Script API.\u003c/p\u003e\n"],["\u003cp\u003eThe \u003ccode\u003eresult\u003c/code\u003e field within the \u003ccode\u003eExecutionResponse\u003c/code\u003e holds the function's return value, limited to basic types like string, number, array, object, or boolean.\u003c/p\u003e\n"],["\u003cp\u003eSuccessful script execution leads to the \u003ccode\u003eExecutionResponse\u003c/code\u003e being placed in the \u003ccode\u003eresponse\u003c/code\u003e field of the response body.\u003c/p\u003e\n"]]],[],null,["- [JSON representation](#SCHEMA_REPRESENTATION)\n\nAn object that provides the return value of a function executed using the Apps Script API. If the script function returns successfully, the response body's [response](/apps-script/api/reference/rest/v1/scripts/run#body.Operation.FIELDS.response) field contains this `ExecutionResponse` object.\n\n| JSON representation |\n|-----------------------------|\n| ``` { \"result\": value } ``` |\n\n| Fields ||\n|----------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| `result` | `value (`[Value](https://developers.google.com/protocol-buffers/docs/reference/google.protobuf#google.protobuf.Value)` format)` The return value of the script function. The type matches the object type returned in Apps Script. Functions called using the Apps Script API cannot return Apps Script-specific objects (such as a `Document` or a `Calendar`); they can only return primitive types such as a `string`, `number`, `array`, `object`, or `boolean`. |"]]