The parameters of a room key request. The details of the request may vary with the crypto algorithm, but the management and storage layers for outgoing requests expect it to have 'room_id' and 'session_id' properties.

interface IRoomKeyRequestBody {
    algorithm: string;
    room_id: string;
    sender_key: string;
    session_id: string;
}

Hierarchy (view full)

Properties

algorithm: string
room_id: string
sender_key: string
session_id: string