Class InboxEntry
Reprezents an entry in the Inbox.
public class InboxEntry
- Inheritance
-
InboxEntry
- Inherited Members
Properties
AuthorPubKey
Verified public key of the Data author.
public string AuthorPubKey { get; set; }
Property Value
CreateDate
Server creation timestamp.
public long CreateDate { get; set; }
Property Value
Data
Payload of the entry.
public byte[] Data { get; set; }
Property Value
- byte[]
EntryId
ID of the entry in the Inbox.
public string EntryId { get; set; }
Property Value
Files
List of files in the entry.
public List<File> Files { get; set; }
Property Value
InboxId
ID of the Inbox.
public string InboxId { get; set; }
Property Value
StatusCode
Status code of decryption and verification of the message.
If value is equal 0, then the message is successfully decrypted and verified. Otherwise, status code is compatible with codes of exceptions.
public long StatusCode { get; set; }