Table of Contents

Class InboxEntry

Namespace
PrivMX.Endpoint.Inbox.Models
Assembly
PrivMX.Endpoint.dll

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

string

CreateDate

Server creation timestamp.

public long CreateDate { get; set; }

Property Value

long

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

string

Files

List of files in the entry.

public List<File> Files { get; set; }

Property Value

List<File>

InboxId

ID of the Inbox.

public string InboxId { get; set; }

Property Value

string

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; }

Property Value

long