Show / Hide Table of Contents

Class BatchUpdateValuesResponse

The response when updating a range of values in a spreadsheet.

Inheritance
System.Object
BatchUpdateValuesResponse
Implements
IDirectResponseSchema
Namespace: Google.Apis.Sheets.v4.Data
Assembly: Google.Apis.Sheets.v4.dll
Syntax
public class BatchUpdateValuesResponse : object, IDirectResponseSchema

Properties

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

Responses

One UpdateValuesResponse per requested range, in the same order as the requests appeared.

Declaration
public virtual IList<UpdateValuesResponse> Responses { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<UpdateValuesResponse>

SpreadsheetId

The spreadsheet the updates were applied to.

Declaration
public virtual string SpreadsheetId { get; set; }
Property Value
Type Description
System.String

TotalUpdatedCells

The total number of cells updated.

Declaration
public virtual Nullable<int> TotalUpdatedCells { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

TotalUpdatedColumns

The total number of columns where at least one cell in the column was updated.

Declaration
public virtual Nullable<int> TotalUpdatedColumns { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

TotalUpdatedRows

The total number of rows where at least one cell in the row was updated.

Declaration
public virtual Nullable<int> TotalUpdatedRows { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

TotalUpdatedSheets

The total number of sheets where at least one cell in the sheet was updated.

Declaration
public virtual Nullable<int> TotalUpdatedSheets { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

Implements

IDirectResponseSchema
Back to top