Show / Hide Table of Contents

Class ColumnDescription

Details on a column in the table.

Inheritance
System.Object
ColumnDescription
Implements
Google.Protobuf.IMessage<ColumnDescription>
System.IEquatable<ColumnDescription>
Google.Protobuf.IDeepCloneable<ColumnDescription>
Google.Protobuf.IBufferMessage
Google.Protobuf.IMessage
Inherited Members
System.Object.ToString()
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Google.Area120.Tables.V1Alpha1
Assembly: Google.Area120.Tables.V1Alpha1.dll
Syntax
public sealed class ColumnDescription : IMessage<ColumnDescription>, IEquatable<ColumnDescription>, IDeepCloneable<ColumnDescription>, IBufferMessage, IMessage

Constructors

ColumnDescription()

Declaration
public ColumnDescription()

ColumnDescription(ColumnDescription)

Declaration
public ColumnDescription(ColumnDescription other)
Parameters
Type Name Description
ColumnDescription other

Properties

DataType

Data type of the column Supported types are number, text, boolean, number_list, text_list, boolean_list.

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

Id

Internal id for a column.

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

Name

column name

Declaration
public string Name { get; set; }
Property Value
Type Description
System.String
Back to top