Show / Hide Table of Contents

Class BatchGetValuesResponse

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

Inheritance
System.Object
BatchGetValuesResponse
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 BatchGetValuesResponse : 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
[JsonProperty("spreadsheetId")]
public virtual string SpreadsheetId { get; set; }
Property Value
Type Description
System.String

ValueRanges

The requested values. The order of the ValueRanges is the same as the order of the requested ranges.

Declaration
[JsonProperty("valueRanges")]
public virtual IList<ValueRange> ValueRanges { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<ValueRange>

Implements

IDirectResponseSchema
In This Article
Back to top