<PackageReference Include="Relativity.Import.Models.SDK" Version="1.7.7" />

Relativity.Import.V1.Models.Sources.DataSourceSettings

public class DataSourceSettings
Settings of the single data source, and how this load file will be read.
public string AbsoluteLocalFolderPath { get; set; }

Gets or sets UNC/Absolute local path to the load file folder.

public char ColumnDelimiter { get; set; }

Gets or sets the delimiter used to separate one line of data into multiple columns.

public string CultureInfo { get; set; }

Gets or sets the culture info. The format for the culture name is based on RFC 4646 and BCP 47 ex: "en-US".

public string Encoding { get; set; }

Gets or sets the encoding of the load file as a string (WebName) ex: "utf-8", "utf-16" "utf-16BE", "Windows-1252". (Default UTF-8) Name CodePage WebName EncodingName utf-8 65001 utf-8 Unicode (UTF-8) utf-16 1200 utf-16 Unicode utf-16BE 1201 utf-16BE Unicode (Big-Endian) Windows-1252 1252 Windows-1252 Western European (Windows).

public DataSourceEndOfLine EndOfLine { get; set; }

Gets or sets the end of line standard used in load file. (Default Windows - 0).

public bool FirstLineContainsColumnNames { get; set; }

Gets or sets a value indicating whether the first line of load file contains column names.

public char MultiValueDelimiter { get; set; }

Gets or sets delimiter used to separate multiple values, such as different single-choice field values.

public char NestedValueDelimiter { get; set; }

Gets or sets delimiter used to separate nested values, such as choices or child choices on a multi-choice field.

public char NewLineDelimiter { get; set; }

Gets or sets the delimiter that marks the end of a line in any extracted or long text field.

public string Path { get; set; }

Gets or sets path to the load file used to import data.

public char QuoteDelimiter { get; set; }

Gets or sets the delimiter that marks the beginning and end of each field.

public int StartLine { get; set; }

Gets or sets the line number from which the import will start and skip the lines before. (Default 0).

public DataSourceType Type { get; set; }

Gets or sets the type of the load file. (Default Unknown - 0).