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
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.Sheets.v4.Data
Assembly: Google.Apis.Sheets.v4.dll
Syntax
public class UpdateValuesByDataFilterResponse : IDirectResponseSchema

Properties

DataFilter

The data filter that selected the range that was updated.

Declaration
[JsonProperty("dataFilter")]
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
[JsonProperty("updatedCells")]
public virtual 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
[JsonProperty("updatedColumns")]
public virtual 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
[JsonProperty("updatedData")]
public virtual ValueRange UpdatedData { get; set; }
Property Value
Type Description
ValueRange

UpdatedRange

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

Declaration
[JsonProperty("updatedRange")]
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
[JsonProperty("updatedRows")]
public virtual int? UpdatedRows { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

Implements

IDirectResponseSchema
In This Article
Back to top