Show / Hide Table of Contents

Class DataFilter

Filter that describes what data should be selected or returned from a request.

Inheritance
System.Object
DataFilter
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 DataFilter : IDirectResponseSchema

Properties

A1Range

Selects data that matches the specified A1 range.

Declaration
[JsonProperty("a1Range")]
public virtual string A1Range { get; set; }
Property Value
Type Description
System.String

DeveloperMetadataLookup

Selects data associated with the developer metadata matching the criteria described by this DeveloperMetadataLookup.

Declaration
[JsonProperty("developerMetadataLookup")]
public virtual DeveloperMetadataLookup DeveloperMetadataLookup { get; set; }
Property Value
Type Description
DeveloperMetadataLookup

ETag

The ETag of the item.

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

GridRange

Selects data that matches the range described by the GridRange.

Declaration
[JsonProperty("gridRange")]
public virtual GridRange GridRange { get; set; }
Property Value
Type Description
GridRange

Implements

IDirectResponseSchema
In This Article
Back to top