Ответ на выполнение или отладку функции в проекте Apps Script.
JSON-представление
{// Union field update can be only one of the following:"result": {object (ScriptExecutionResult)}// End of list of possible types for union field update.}
Поля
update поля объединения. Обновление с сервера с соответствующими данными о вашем исполнении. update может быть только одним из следующих:
Value представляет собой динамически типизированное значение, которое является результатом выполнения скрипта.
JSON-представление
{// 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.}
Поля
kind поля Союза. Вид ценности. kind может быть только одним из следующих:
Объект, содержащий поля произвольного типа. Дополнительное поле "@type" содержит URI, идентифицирующий тип. Пример: { "id": 1234, "@type": "types.example.com/standard/id" } .
[[["Прост для понимания","easyToUnderstand","thumb-up"],["Помог мне решить мою проблему","solvedMyProblem","thumb-up"],["Другое","otherUp","thumb-up"]],[["Отсутствует нужная мне информация","missingTheInformationINeed","thumb-down"],["Слишком сложен/слишком много шагов","tooComplicatedTooManySteps","thumb-down"],["Устарел","outOfDate","thumb-down"],["Проблема с переводом текста","translationIssue","thumb-down"],["Проблемы образцов/кода","samplesCodeIssue","thumb-down"],["Другое","otherDown","thumb-down"]],["Последнее обновление: 2025-01-06 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."]]],[]]