Class ColumnDescription
Details on a column in the table.
Implements
Inherited Members
Namespace: Google.Apis.Area120Tables.v1alpha1.Data
Assembly: Google.Apis.Area120Tables.v1alpha1.dll
Syntax
public class ColumnDescription : IDirectResponseSchema
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
[JsonProperty("dataType")]
public virtual string DataType { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
DateDetails
Optional. Additional details about a date column.
Declaration
[JsonProperty("dateDetails")]
public virtual DateDetails DateDetails { get; set; }
Property Value
| Type | Description |
|---|---|
| DateDetails |
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
Id
Internal id for a column.
Declaration
[JsonProperty("id")]
public virtual 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
[JsonProperty("labels")]
public virtual IList<LabeledItem> Labels { get; set; }
Property Value
| Type | Description |
|---|---|
| IList<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
[JsonProperty("lookupDetails")]
public virtual LookupDetails LookupDetails { get; set; }
Property Value
| Type | Description |
|---|---|
| LookupDetails |
MultipleValuesDisallowed
Optional. Indicates whether or not multiple values are allowed for array types where such a restriction is possible.
Declaration
[JsonProperty("multipleValuesDisallowed")]
public virtual bool? MultipleValuesDisallowed { get; set; }
Property Value
| Type | Description |
|---|---|
| bool? |
Name
column name
Declaration
[JsonProperty("name")]
public virtual string Name { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
Readonly__
Optional. Indicates that values for the column cannot be set by the user.
Declaration
[JsonProperty("readonly")]
public virtual bool? Readonly__ { get; set; }
Property Value
| Type | Description |
|---|---|
| bool? |
RelationshipDetails
Optional. Additional details about a relationship column. Specified when data_type is relationship.
Declaration
[JsonProperty("relationshipDetails")]
public virtual RelationshipDetails RelationshipDetails { get; set; }
Property Value
| Type | Description |
|---|---|
| RelationshipDetails |