data stored in the session store about an inbound group session

interface InboundGroupSessionData {
    forwardingCurve25519KeyChain: string[];
    keysClaimed?: Record<string, string>;
    room_id: string;
    session: string;
    sharedHistory?: boolean;
    untrusted?: boolean;
}

Properties

forwardingCurve25519KeyChain: string[]

Devices involved in forwarding this session to us (normally empty).

keysClaimed?: Record<string, string>
room_id: string
session: string

pickled Olm.InboundGroupSession

sharedHistory?: boolean

whether this session exists during the room being set to shared history.

untrusted?: boolean

whether this session is untrusted.