Show / Hide Table of Contents

Class UpdateValuesByDataFilterResponse

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

Inheritance
object
UpdateValuesByDataFilterResponse
Implements
IDirectResponseSchema
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
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
string

UpdatedCells

The number of cells updated.

Declaration
[JsonProperty("updatedCells")]
public virtual int? UpdatedCells { get; set; }
Property Value
Type Description
int?

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
int?

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
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
int?

Implements

IDirectResponseSchema
In this article
Back to top Generated by DocFX