Class ColumnDescription
Details on a column in the table.
Implements
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 auto_id, boolean, boolean_list, creator, create_timestamp, date, dropdown, location, integer, integer_list, number, number_list, person, person_list, tags, check_list, text, text_list, update_timestamp, updater, relationship, file_attachment_list. These types directly map to the column types supported on Tables website.
Declaration
public string DataType { get; set; }
Property Value
Type | Description |
---|---|
string |
Id
Internal id for a column.
Declaration
public string Id { get; set; }
Property Value
Type | Description |
---|---|
string |
Labels
Optional. Range of labeled values for the column. Some columns like tags and drop-downs limit the values to a set of possible values. We return the range of values in such cases to help clients implement better user data validation.
Declaration
public RepeatedField<LabeledItem> Labels { get; }
Property Value
Type | Description |
---|---|
RepeatedField<LabeledItem> |
LookupDetails
Optional. Indicates that this is a lookup column whose value is derived from the relationship column specified in the details. Lookup columns can not be updated directly. To change the value you must update the associated relationship column.
Declaration
public LookupDetails LookupDetails { get; set; }
Property Value
Type | Description |
---|---|
LookupDetails |
Name
column name
Declaration
public string Name { get; set; }
Property Value
Type | Description |
---|---|
string |
RelationshipDetails
Optional. Additional details about a relationship column. Specified when data_type is relationship.
Declaration
public RelationshipDetails RelationshipDetails { get; set; }
Property Value
Type | Description |
---|---|
RelationshipDetails |