Show / Hide Table of Contents

Class UpdateValuesByDataFilterResponse

The response when updating a range of values by a data filter in a spreadsheet.

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

Properties

DataFilter

The data filter that selected the range that was updated.

Declaration
public virtual DataFilter DataFilter { get; set; }
Property Value
Type Description
DataFilter

ETag

The ETag of the item.

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

UpdatedCells

The number of cells updated.

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

UpdatedColumns

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

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

UpdatedData

The values of the cells in the range matched by the dataFilter after all updates were applied. This is only included if the request's includeValuesInResponse field was true.

Declaration
public virtual ValueRange UpdatedData { get; set; }
Property Value
Type Description
ValueRange

UpdatedRange

The range (in A1 notation) that updates were applied to.

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

UpdatedRows

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

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

Implements

IDirectResponseSchema
Back to top