Class AlterTableColumnDefinition
Describes the definition of a single column in an alter operation.
public class AlterTableColumnDefinition
- Inheritance
-
AlterTableColumnDefinition
- Inherited Members
Properties
KeyType
The key type if the column is a map or similar structure.
[JsonPropertyName("keyType")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
public string KeyType { get; set; }
Property Value
Type
The type of the column.
[JsonPropertyName("type")]
public string Type { get; set; }
Property Value
ValueType
The value type if the column is a map or similar structure.
[JsonPropertyName("valueType")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
public string ValueType { get; set; }