-
Notifications
You must be signed in to change notification settings - Fork 4.8k
/
ConnectorMappingFormat.cs
49 lines (44 loc) · 2.36 KB
/
ConnectorMappingFormat.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// <auto-generated/>
#nullable disable
namespace Azure.ResourceManager.CustomerInsights.Models
{
/// <summary> Connector mapping property format. </summary>
public partial class ConnectorMappingFormat
{
/// <summary> Initializes a new instance of ConnectorMappingFormat. </summary>
public ConnectorMappingFormat()
{
FormatType = FormatType.TextFormat;
}
/// <summary> Initializes a new instance of ConnectorMappingFormat. </summary>
/// <param name="formatType"> The type mapping format. </param>
/// <param name="columnDelimiter"> The character that signifies a break between columns. </param>
/// <param name="acceptLanguage"> The oData language. </param>
/// <param name="quoteCharacter"> Quote character, used to indicate enquoted fields. </param>
/// <param name="quoteEscapeCharacter"> Escape character for quotes, can be the same as the quoteCharacter. </param>
/// <param name="arraySeparator"> Character separating array elements. </param>
internal ConnectorMappingFormat(FormatType formatType, string columnDelimiter, string acceptLanguage, string quoteCharacter, string quoteEscapeCharacter, string arraySeparator)
{
FormatType = formatType;
ColumnDelimiter = columnDelimiter;
AcceptLanguage = acceptLanguage;
QuoteCharacter = quoteCharacter;
QuoteEscapeCharacter = quoteEscapeCharacter;
ArraySeparator = arraySeparator;
}
/// <summary> The type mapping format. </summary>
public FormatType FormatType { get; }
/// <summary> The character that signifies a break between columns. </summary>
public string ColumnDelimiter { get; set; }
/// <summary> The oData language. </summary>
public string AcceptLanguage { get; set; }
/// <summary> Quote character, used to indicate enquoted fields. </summary>
public string QuoteCharacter { get; set; }
/// <summary> Escape character for quotes, can be the same as the quoteCharacter. </summary>
public string QuoteEscapeCharacter { get; set; }
/// <summary> Character separating array elements. </summary>
public string ArraySeparator { get; set; }
}
}