interface IInboundGroupSessionKey {
    chain_index: number;
    forwarding_curve25519_key_chain: string[];
    key: string;
    sender_claimed_ed25519_key: null | string;
    shared_history: boolean;
    untrusted?: boolean;
}

Properties

chain_index: number
forwarding_curve25519_key_chain: string[]
key: string
sender_claimed_ed25519_key: null | string
shared_history: boolean
untrusted?: boolean