UpdateValuesResponse
スプレッドシート内の値の範囲を更新した場合のレスポンス。
JSON 表現 |
{
"spreadsheetId": string,
"updatedRange": string,
"updatedRows": integer,
"updatedColumns": integer,
"updatedCells": integer,
"updatedData": {
object (ValueRange )
}
} |
フィールド |
spreadsheetId |
string
更新が適用されたスプレッドシート。
|
updatedRange |
string
更新が適用された範囲(A1 表記)。
|
updatedRows |
integer
行内の 1 つ以上のセルが更新された行の数。
|
updatedColumns |
integer
列内の少なくとも 1 つのセルが更新された列の数。
|
updatedCells |
integer
更新されたセルの数。
|
updatedData |
object (ValueRange )
更新が適用された後のセルの値。これは、リクエストの includeValuesInResponse フィールドが true であった場合にのみ含まれます。
|
特に記載のない限り、このページのコンテンツはクリエイティブ・コモンズの表示 4.0 ライセンスにより使用許諾されます。コードサンプルは Apache 2.0 ライセンスにより使用許諾されます。詳しくは、Google Developers サイトのポリシーをご覧ください。Java は Oracle および関連会社の登録商標です。
最終更新日 2024-10-15 UTC。
[null,null,["最終更新日 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"]]