use std::collections::BTreeMap;
use js_int::UInt;
use ruma_api::ruma_api;
use ruma_common::encryption::{DeviceKeys, OneTimeKey};
use ruma_identifiers::{DeviceKeyAlgorithm, DeviceKeyId};
ruma_api! {
metadata: {
description: "Publishes end-to-end encryption keys for the device.",
method: POST,
name: "upload_keys",
path: "/_matrix/client/r0/keys/upload",
rate_limited: false,
authentication: AccessToken,
}
#[derive(Default)]
request: {
#[serde(skip_serializing_if = "Option::is_none")]
pub device_keys: Option<DeviceKeys>,
#[serde(skip_serializing_if = "Option::is_none")]
pub one_time_keys: Option<BTreeMap<DeviceKeyId, OneTimeKey>>,
}
response: {
pub one_time_key_counts: BTreeMap<DeviceKeyAlgorithm, UInt>
}
error: crate::Error
}
impl Request {
pub fn new() -> Self {
Default::default()
}
}
impl Response {
pub fn new(one_time_key_counts: BTreeMap<DeviceKeyAlgorithm, UInt>) -> Self {
Self { one_time_key_counts }
}
}