Class MysqlColumn
MySQL Column.
Implements
Inherited Members
Namespace: Google.Apis.Datastream.v1.Data
Assembly: Google.Apis.Datastream.v1.dll
Syntax
public class MysqlColumn : IDirectResponseSchema
Properties
Collation
Column collation.
Declaration
[JsonProperty("collation")]
public virtual string Collation { get; set; }
Property Value
Type | Description |
---|---|
string |
Column
Column name.
Declaration
[JsonProperty("column")]
public virtual string Column { get; set; }
Property Value
Type | Description |
---|---|
string |
DataType
The MySQL data type. Full data types list can be found here: https://dev.mysql.com/doc/refman/8.0/en/data-types.html
Declaration
[JsonProperty("dataType")]
public virtual string DataType { get; set; }
Property Value
Type | Description |
---|---|
string |
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
Length
Column length.
Declaration
[JsonProperty("length")]
public virtual int? Length { get; set; }
Property Value
Type | Description |
---|---|
int? |
Nullable
Whether or not the column can accept a null value.
Declaration
[JsonProperty("nullable")]
public virtual bool? Nullable { get; set; }
Property Value
Type | Description |
---|---|
bool? |
OrdinalPosition
The ordinal position of the column in the table.
Declaration
[JsonProperty("ordinalPosition")]
public virtual int? OrdinalPosition { get; set; }
Property Value
Type | Description |
---|---|
int? |
Precision
Column precision.
Declaration
[JsonProperty("precision")]
public virtual int? Precision { get; set; }
Property Value
Type | Description |
---|---|
int? |
PrimaryKey
Whether or not the column represents a primary key.
Declaration
[JsonProperty("primaryKey")]
public virtual bool? PrimaryKey { get; set; }
Property Value
Type | Description |
---|---|
bool? |
Scale
Column scale.
Declaration
[JsonProperty("scale")]
public virtual int? Scale { get; set; }
Property Value
Type | Description |
---|---|
int? |