Show / Hide Table of Contents

Class BatchGetValuesByDataFilterResponse

The response when retrieving more than one range of values in a spreadsheet selected by DataFilters.

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

Properties

ETag

The ETag of the item.

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

SpreadsheetId

The ID of the spreadsheet the data was retrieved from.

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

ValueRanges

The requested values with the list of data filters that matched them.

Declaration
public virtual IList<MatchedValueRange> ValueRanges { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<MatchedValueRange>

Implements

IDirectResponseSchema
Back to top