Show / Hide Table of Contents

Class AppendCellsRequest

Adds new cells after the last row with data in a sheet, inserting new rows into the sheet if necessary.

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

Properties

ETag

The ETag of the item.

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

Fields

The fields of CellData that should be updated. At least one field must be specified. The root is the CellData; 'row.values.' should not be specified. A single "*" can be used as short-hand for listing every field.

Declaration
[JsonProperty("fields")]
public virtual object Fields { get; set; }
Property Value
Type Description
object

Rows

The data to append.

Declaration
[JsonProperty("rows")]
public virtual IList<RowData> Rows { get; set; }
Property Value
Type Description
IList<RowData>

SheetId

The sheet ID to append the data to.

Declaration
[JsonProperty("sheetId")]
public virtual int? SheetId { get; set; }
Property Value
Type Description
int?

TableId

The ID of the table to append data to. The data will be only appended to the table body. This field also takes precedence over the sheet_id field.

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

Implements

IDirectResponseSchema
In this article
Back to top Generated by DocFX