Class DocumentPayload
Inheritance
System.Object
DocumentPayload
Namespace: Simplic.Document
Assembly: Simplic.Document.dll
Syntax
public class DocumentPayload : IDocument<Guid>
Properties
| Improve this Doc View SourceId
Gets or sets the primary key id.
Declaration
public Guid Id { get; set; }
Property Value
Type | Description |
---|---|
System.Guid |
IsDeleted
Gets or sets if the payload is deleted.
Declaration
public bool IsDeleted { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
Payload
Stores the payload inside a byte array.
Declaration
public byte[] Payload { get; set; }
Property Value
Type | Description |
---|---|
System.Byte[] |
State
Gets or sets the state. 0 = unprocessed, 1 = processed, 2 =error.
Declaration
public int State { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |