Show / Hide Table of Contents

Class AppendValuesResponse

The response when updating a range of values in a spreadsheet.

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

Properties

ETag

The ETag of the item.

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

SpreadsheetId

The spreadsheet the updates were applied to.

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

TableRange

The range (in A1 notation) of the table that values are being appended to (before the values were appended). Empty if no table was found.

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

Updates

Information about the updates that were applied.

Declaration
public virtual UpdateValuesResponse Updates { get; set; }
Property Value
Type Description
UpdateValuesResponse

Implements

IDirectResponseSchema
Back to top