References:
CodePudding user response:
Just in case, here is the structure of an event object in SpreadsheetApp:
var e = {
"authMode": {object},
"range": {
"columnStart": int,
"rowStart": int,
"rowEnd": int,
"columnEnd": int
},
"source": {Spreadsheet_object},
"oldValue": "string",
"user": {
"nickname": "string",
"email": "string"
},
"value": "string"
};