Class Table
Inheritance
System.Object
Table
Implements
Google.Apis.Requests.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.ShoppingContent.v2.Data
Assembly: Google.Apis.ShoppingContent.v2.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 |
---|---|
System.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 |
---|---|
System.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 |
---|---|
System.Collections.Generic.IList<Row> |
Implements
Google.Apis.Requests.IDirectResponseSchema