Class Table
Implements
Inherited Members
Namespace: Google.Apis.ShoppingContent.v2_1.Data
Assembly: Google.Apis.ShoppingContent.v2_1.dll
Syntax
public class Table : IDirectResponseSchema
Properties
ColumnHeaders
Headers of the table's columns. Optional: if not set then the table has only one dimension.
Declaration
[JsonProperty("columnHeaders")]
public virtual Headers ColumnHeaders { get; set; }
Property Value
Type | Description |
---|---|
Headers |
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
Name
Name of the table. Required for subtables, ignored for the main table.
Declaration
[JsonProperty("name")]
public virtual string Name { get; set; }
Property Value
Type | Description |
---|---|
string |
RowHeaders
Headers of the table's rows. Required.
Declaration
[JsonProperty("rowHeaders")]
public virtual Headers RowHeaders { get; set; }
Property Value
Type | Description |
---|---|
Headers |
Rows
The list of rows that constitute the table. Must have the same length as rowHeaders
. Required.
Declaration
[JsonProperty("rows")]
public virtual IList<Row> Rows { get; set; }
Property Value
Type | Description |
---|---|
IList<Row> |