Google Super
GOOGLESUPER_DELETE_TABLE_COLUMN
Tool to delete a column from a table in a Google Document. Use this tool when you need to remove a specific column from an existing table within a document.
Remote googlesuper
Other tools also called GOOGLESUPER_DELETE_TABLE_COLUMN?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"requests": {
"type": "array",
"items": {
"type": "object",
"title": "DeleteTableColumnRequestRequest",
"required": [
"deleteTableColumn"
],
"properties": {
"deleteTableColumn": {
"type": "object",
"title": "Delete Table Column",
"required": [
"tableCellLocation"
],
"properties": {
"tableCellLocation": {
"type": "object",
"title": "Table Cell Location",
"required": [
"tableStartLocation",
"rowIndex",
"columnIndex"
],
"properties": {
"rowIndex": {
"type": "integer",
"title": "Row Index",
"description": "The zero-based row index. For example, the second row in the table has a row index of 1."
},
"columnIndex": {
"type": "integer",
"title": "Column Index",
"description": "The zero-based column index. For example, the second column in the table has a column index of 1."
},
"tableStartLocation": {
"type": "object",
"title": "Table Start Location",
"properties": {
"index": {
"type": "integer",
"title": "Index",
"default": null,
"nullable": true,
"description": "The zero-based index, in UTF-16 code units."
},
"tabId": {
"type": "string",
"title": "Tab Id",
"default": null,
"nullable": true,
"description": "The tab that the location is in. When omitted, the request is applied to the first tab."
},
"segmentId": {
"type": "string",
"title": "Segment Id",
"default": null,
"nullable": true,
"description": "The ID of the header, footer or footnote the location is in. An empty segment ID signifies the document's body."
}
},
"description": "The location where the table starts in the document.",
"additionalProperties": false
}
},
"description": "The reference table cell location from which the column will be deleted.",
"additionalProperties": false
}
},
"additionalProperties": false
}
}
},
"title": "Requests",
"description": "A list of requests to be applied to the document."
},
"document_id": {
"type": "string",
"title": "Document Id",
"examples": [
"12345abcdef"
],
"description": "The ID of the document to delete the table column from."
}
}
}