Class ImportLine
Used to import data into the system. Representing one entity that will be imported.
Carrier object for ImportLine. Services for the ImportLine Carrier is available from the Import Agent.Namespace: SuperOffice.CRM.Services
Assembly: SuperOffice.Services.dll
Syntax
[DataContract(Namespace = "http://www.superoffice.net/ws/crm/NetServer/11.1.0.0")]
public class ImportLine : Carrier
Constructors
ImportLine()
Default constructor
Declaration
public ImportLine()
See Also
Properties
ExternalKey
Optional external primary key for the row
Declaration
[DataMember]
public virtual string ExternalKey { get; set; }
Property Value
Type | Description |
---|---|
string |
See Also
Operation
Which operation will be used? This is a read-only property
Declaration
[DataMember]
public virtual ImportAction Operation { get; set; }
Property Value
Type | Description |
---|---|
ImportAction |
See Also
Selected
True if the entity shall be imported, false if the entity shall be ignored
Declaration
[DataMember]
public virtual bool Selected { get; set; }
Property Value
Type | Description |
---|---|
bool |
See Also
Type
Which entity type will be created? This is a read-only property
Declaration
[DataMember]
public virtual ImportEntityType Type { get; set; }
Property Value
Type | Description |
---|---|
ImportEntityType |
See Also
Values
An array of the values that will be imported on the entity
Declaration
[DataMember]
public virtual string[] Values { get; set; }
Property Value
Type | Description |
---|---|
string[] |
See Also
Methods
ToString()
Returns the carrier contents as a formatted string.
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
string | The carrier contents. |
See Also
ToString(string)
Returns the carrier contents as a formatted string, useful for debugging. Each line in the output is prefixed with the input value.
Declaration
public string ToString(string prefix)
Parameters
Type | Name | Description |
---|---|---|
string | prefix | The line prefix (typically used for indenting) |
Returns
Type | Description |
---|---|
string | The carrier contents. |