Base protocol frame

interface SendMessage {
    payload: {
        encrypted: instantMessaging.SerializedEncryptedMessage;
        messageHash: string;
        to: string;
    };
    requestId?: string;
    timestamp: number;
    type: "send";
}

Hierarchy (view full)

Properties

payload: {
    encrypted: instantMessaging.SerializedEncryptedMessage;
    messageHash: string;
    to: string;
}

Type declaration

requestId?: string

Request correlation ID for request/response flows

timestamp: number
type