The response for executing or debugging a function in an Apps Script project.
JSON representation
{// Union field update can be only one of the following:"result": {object (ScriptExecutionResult)}// End of list of possible types for union field update.}
Fields
Union field update. Update from the server with pertinent data about your execution. update can be only one of the following:
Value represents a dynamically typed value which is the outcome of an executed script.
JSON representation
{// Union field kind can be only one of the following:"nullValue": enum (NullValue),"numberValue": number,"stringValue": string,"boolValue": boolean,"structValue": {object (Struct)},"listValue": {object (ListValue)},"dateValue": string,"protoValue": {"@type": string,field1: ...,...},"bytesValue": string// End of list of possible types for union field kind.}
Fields
Union field kind. The kind of value. kind can be only one of the following:
An object containing fields of an arbitrary type. An additional field "@type" contains a URI identifying the type. Example: { "id": 1234, "@type": "types.example.com/standard/id" }.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2024-10-31 UTC."],[[["The content describes the JSON response structure for executing or debugging a function within an Apps Script project."],["`ScriptExecutionResult` encapsulates the outcome of the function execution, which can include a return value."],["`Value` represents the dynamically typed result of the script, encompassing various data types like numbers, strings, booleans, structures, and lists."],["`Struct` and `ListValue` further define structured data and collections of values respectively, offering a comprehensive representation of complex results."]]],[]]