File

src/app/core/import/column-mapping.ts

Description

Mapping of a column from an import dataset to define how it should be imported exactly.

Index

Properties

Properties

additional
additional: any
Type : any
Optional

details of data transformation or parsing into the property.

e.g. date format to be parsed or key-value transformation map

column
column: string
Type : string

import data column header id

propertyName
propertyName: string
Type : string
Optional

mapped entity property id

export interface ColumnMapping {
  /** import data column header id */
  column: string;

  /** mapped entity property id */
  propertyName?: string;

  /**
   * details of data transformation or parsing into the property.
   *
   * e.g. date format to be parsed or key-value transformation map
   */
  additional?: any;
}

results matching ""

    No results matching ""