public class OutputColumnDetails
{
public int FieldNumber;
public string FieldName;
public int Offset;
public int Length;
public string Description;
public string ColumnName;
public string TablePrefix;
public KnownColumnTypes FieldType;
}
Defines the location and type of a column in a cleansed data file.
Once the calling application has downloaded a cleansed data file using the DownloadResults
method, it will typically need to understand where in the file different types of data are stored in order to import the results back into
a line-of-business application. This can be done by retrieving a list of OutputColumnDetails instances from the
GetOutputFormat method.
Each data cleansing service typically adds one or more additional columns of data to the cleansed data file, after the columns that were in
the original input data. The definitions of the columns that are added by each service can be seen in the documentation for the
GetAvailableServices method.
Each of the additional columns described in the GetAvailableServices documentation contains a two-part identifier. These can be matched against
the TablePrefix and ColumnName fields in the OutputColumnDetails instances to identify which column in the cleansed data file contains that
data.