Class SyncGroupSchemaTableColumn
Properties of column in sync group table.
Namespace: System.Dynamic.ExpandoObject
Assembly: Microsoft.Azure.Management.Sql.dll
Syntax
public class SyncGroupSchemaTableColumn
Constructors
SyncGroupSchemaTableColumn()
Initializes a new instance of the SyncGroupSchemaTableColumn class.
Declaration
public SyncGroupSchemaTableColumn ();
SyncGroupSchemaTableColumn(String, String, String)
Initializes a new instance of the SyncGroupSchemaTableColumn class.
Declaration
public SyncGroupSchemaTableColumn (string quotedName = null, string dataSize = null, string dataType = null);
Parameters
String
quotedName
Quoted name of sync group table column. |
String
dataSize
Data size of the column. |
String
dataType
Data type of the column. |
Properties
DataSize
Gets or sets data size of the column.
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="dataSize")]
public string DataSize { get; set; }
Property Value
String
|
DataType
Gets or sets data type of the column.
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="dataType")]
public string DataType { get; set; }
Property Value
String
|
QuotedName
Gets or sets quoted name of sync group table column.
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="quotedName")]
public string QuotedName { get; set; }
Property Value
String
|