Interface IDataSourceResult
A complex type definition for holding the result of searching across the entire system for third party ids
Can be executed from GetMatchingDataSources(Guid?, string, bool, Guid?, Guid?, string)
Namespace: LemonEdge.API.Entities.DataIntegration
Assembly: LemonEdge.API.dll
Syntax
[ComplexDefinition(ImageType.NewLink, "Data Source Search", HelpURL = "data-sources")]
public interface IDataSourceResult
Properties
DataSourceTypeID
The id of the datasource type that this match was found for
Declaration
Guid DataSourceTypeID { get; set; }
Property Value
Type | Description |
---|---|
Guid |
DataSourceTypeID_Label
The name of the data source type that this match was found for
Declaration
[EntityProperty(SQLType.NVarChar, false, FriendlyLabel = "Type")]
string DataSourceTypeID_Label { get; set; }
Property Value
Type | Description |
---|---|
string |
EntityID
The unique of the actual item that has this associated dat source id
Declaration
[Key]
[Column(Order = 1)]
Guid EntityID { get; set; }
Property Value
Type | Description |
---|---|
Guid |
EntityTypeID
The unique global id of the type of entity that has this associated data source id
Declaration
[Key]
[Column(Order = 0)]
Guid EntityTypeID { get; set; }
Property Value
Type | Description |
---|---|
Guid |
LastUpdated
The date/time stamp of the last modification of this item
Declaration
DateTimeOffset LastUpdated { get; set; }
Property Value
Type | Description |
---|---|
DateTimeOffset |
ModifiedByUserID
The id of the user that last modified this item
Declaration
Guid ModifiedByUserID { get; set; }
Property Value
Type | Description |
---|---|
Guid |
ModifiedByUserID_Label
The name of the user that last modified this item
Declaration
[EntityProperty(SQLType.NVarChar, false, FriendlyLabel = "Modified By")]
string ModifiedByUserID_Label { get; set; }
Property Value
Type | Description |
---|---|
string |
SourceID
The matching third party id associated with this item
Declaration
[Key]
[Column(Order = 2)]
string SourceID { get; set; }
Property Value
Type | Description |
---|---|
string |