Class ImportItem
Implements an item from the imported source
Namespace: SuperOffice.CRM.Import
Assembly: SoDataBase.dll
Syntax
public class ImportItem : Object
Constructors
ImportItem()
Implements an item from the imported source
Declaration
public ImportItem()
Properties
ExternalKey
Get/sets the external key for the item
Declaration
public string ExternalKey { get; set; }
Property Value
Type | Description |
---|---|
String |
Operation
Which operation will be used? This is a read-only property
Declaration
public ImportAction Operation { get; set; }
Property Value
Type | Description |
---|---|
ImportAction |
Selected
True if the entity shall be imported, false if the entity shall be ignored
Declaration
public bool Selected { get; set; }
Property Value
Type | Description |
---|---|
Boolean |
Type
Which entity type will be created? This is a read-only property
Declaration
public ImportEntityType Type { get; set; }
Property Value
Type | Description |
---|---|
ImportEntityType |
Values
An array of the values that will be imported on the entity
Declaration
public string[] Values { get; set; }
Property Value
Type | Description |
---|---|
String[] |
Methods
GetFieldValue(Int32)
Return the field value in the given field position
Declaration
public string GetFieldValue(int fieldPosition)
Parameters
Type | Name | Description |
---|---|---|
Int32 | fieldPosition |
Returns
Type | Description |
---|---|
String |
Extension Methods
EnumUtil.MapEnums<From, To>(From)