Show / Hide Table of Contents

Class BatchGetValuesByDataFilterRequest

The request for retrieving a range of values in a spreadsheet selected by a set of DataFilters.

Inheritance
object
BatchGetValuesByDataFilterRequest
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 BatchGetValuesByDataFilterRequest : IDirectResponseSchema

Properties

DataFilters

The data filters used to match the ranges of values to retrieve. Ranges that match any of the specified data filters are included in the response.

Declaration
[JsonProperty("dataFilters")]
public virtual IList<DataFilter> DataFilters { get; set; }
Property Value
Type Description
IList<DataFilter>

DateTimeRenderOption

How dates, times, and durations should be represented in the output. This is ignored if value_render_option is FORMATTED_VALUE. The default dateTime render option is SERIAL_NUMBER.

Declaration
[JsonProperty("dateTimeRenderOption")]
public virtual string DateTimeRenderOption { get; set; }
Property Value
Type Description
string

ETag

The ETag of the item.

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

MajorDimension

The major dimension that results should use. For example, if the spreadsheet data is: A1=1,B1=2,A2=3,B2=4, then a request that selects that range and sets majorDimension=ROWS returns [[1,2],[3,4]], whereas a request that sets majorDimension=COLUMNS returns [[1,3],[2,4]].

Declaration
[JsonProperty("majorDimension")]
public virtual string MajorDimension { get; set; }
Property Value
Type Description
string

ValueRenderOption

How values should be represented in the output. The default render option is FORMATTED_VALUE.

Declaration
[JsonProperty("valueRenderOption")]
public virtual string ValueRenderOption { get; set; }
Property Value
Type Description
string

Implements

IDirectResponseSchema
In this article
Back to top Generated by DocFX