Interface IOneTimeKey

the type of the one_time_keys and fallback_keys parameters on /_matrix/client/v3/keys/upload

interface IOneTimeKey {
    fallback?: boolean;
    key: string;
    signatures?: ISignatures;
}

Properties

fallback?: boolean
key: string
signatures?: ISignatures