Class Table
A table defining the rate group, when single_value
is not
expressive enough.
Namespace: Google.Shopping.Merchant.Accounts.V1Beta
Assembly: Google.Shopping.Merchant.Accounts.V1Beta.dll
Syntax
public sealed class Table : IMessage<Table>, IEquatable<Table>, IDeepCloneable<Table>, IBufferMessage, IMessage
Constructors
Table()
Declaration
public Table()
Table(Table)
Declaration
public Table(Table other)
Parameters
Type | Name | Description |
---|---|---|
Table | other |
Properties
ColumnHeaders
Headers of the table's columns. Optional: if not set then the table has only one dimension.
Declaration
public Headers ColumnHeaders { get; set; }
Property Value
Type | Description |
---|---|
Headers |
HasName
Gets whether the "name" field is set
Declaration
public bool HasName { get; }
Property Value
Type | Description |
---|---|
bool |
Name
Name of the table. Required for subtables, ignored for the main table.
Declaration
public string Name { get; set; }
Property Value
Type | Description |
---|---|
string |
RowHeaders
Required. Headers of the table's rows.
Declaration
public Headers RowHeaders { get; set; }
Property Value
Type | Description |
---|---|
Headers |
Rows
Required. The list of rows that constitute the table. Must have the same
length as row_headers
.
Declaration
public RepeatedField<Row> Rows { get; }
Property Value
Type | Description |
---|---|
RepeatedField<Row> |