Class DocumentDefinition<T>
Represents a new item to process.
public class DocumentDefinition<T> : IDocumentDefinition
Type Parameters
T
- Inheritance
-
DocumentDefinition<T>
- Implements
Constructors
DocumentDefinition(string, T)
public DocumentDefinition(string type, T item)
Parameters
type
stringitem
T
DocumentDefinition(T)
public DocumentDefinition(T item)
Parameters
item
T
Properties
CorrelationId
public string CorrelationId { get; set; }
Property Value
Data
public T Data { get; set; }
Property Value
- T
DataType
public Type DataType { get; }
Property Value
ParentJobId
Once the processing of the document is complete, the system will automatically queue a "completed job" response for this job id.
public Guid? ParentJobId { get; set; }
Property Value
- Guid?
Type
public string Type { get; set; }