UpdateValuesResponse
Es la respuesta que se obtiene cuando se actualiza un rango de valores en una hoja de cálculo.
Representación JSON |
{
"spreadsheetId": string,
"updatedRange": string,
"updatedRows": integer,
"updatedColumns": integer,
"updatedCells": integer,
"updatedData": {
object (ValueRange )
}
} |
Campos |
spreadsheetId |
string
La hoja de cálculo a la que se aplicaron las actualizaciones.
|
updatedRange |
string
El rango (en notación A1) al que se aplicaron las actualizaciones.
|
updatedRows |
integer
La cantidad de filas en las que se actualizó al menos una celda de la fila.
|
updatedColumns |
integer
Es la cantidad de columnas en las que se actualizó al menos una celda.
|
updatedCells |
integer
Se actualizó la cantidad de celdas.
|
updatedData |
object (ValueRange )
Los valores de las celdas después de aplicar las actualizaciones. Esto solo se incluye si el campo includeValuesInResponse de la solicitud era true .
|
Salvo que se indique lo contrario, el contenido de esta página está sujeto a la licencia Atribución 4.0 de Creative Commons, y los ejemplos de código están sujetos a la licencia Apache 2.0. Para obtener más información, consulta las políticas del sitio de Google Developers. Java es una marca registrada de Oracle o sus afiliados.
Última actualización: 2024-10-15 (UTC)
[null,null,["Última actualización: 2024-10-15 (UTC)"],[[["This document describes the JSON response received when updating a range of values in a Google Sheet."],["The response includes details like the spreadsheet ID, updated range, the number of rows, columns, and cells affected, and optionally, the updated data itself."],["The `updatedData` field, containing the values after the update, is only present if `includeValuesInResponse` was set to `true` in the original request."]]],["The JSON response for a spreadsheet range update includes: `spreadsheetId` (the updated spreadsheet), `updatedRange` (the range modified), `updatedRows` (rows with at least one updated cell), `updatedColumns` (columns with at least one updated cell), and `updatedCells` (total updated cells). Optionally, if requested, `updatedData` (the new cell values) is provided. All the previous values are in string format, except the amount of updated Rows, columns and cells which are integers.\n"]]