Google Slides · Schema

UpdateTableRowPropertiesRequest

Updates the properties of a Table row.

CollaborationGoogle WorkspacePresentationsProductivitySlides

Properties

Name Type Description
objectId string The object ID of the table.
rowIndices array The list of zero-based indices specifying which rows to update.
fields string The fields that should be updated.
View JSON Schema on GitHub

JSON Schema

google-slides-update-table-row-properties-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "UpdateTableRowPropertiesRequest",
  "type": "object",
  "description": "Updates the properties of a Table row.",
  "properties": {
    "objectId": {
      "type": "string",
      "description": "The object ID of the table."
    },
    "rowIndices": {
      "type": "array",
      "description": "The list of zero-based indices specifying which rows to update."
    },
    "fields": {
      "type": "string",
      "description": "The fields that should be updated."
    }
  }
}