1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
use ruma_macros::EventContent;
use serde::{Deserialize, Serialize};
use super::Relation;
use crate::{serde::Base64, OwnedTransactionId};
#[derive(Clone, Debug, Deserialize, Serialize, EventContent)]
#[cfg_attr(not(feature = "unstable-exhaustive-types"), non_exhaustive)]
#[ruma_event(type = "m.key.verification.key", kind = ToDevice)]
pub struct ToDeviceKeyVerificationKeyEventContent {
pub transaction_id: OwnedTransactionId,
pub key: Base64,
}
impl ToDeviceKeyVerificationKeyEventContent {
pub fn new(transaction_id: OwnedTransactionId, key: Base64) -> Self {
Self { transaction_id, key }
}
}
#[derive(Clone, Debug, Deserialize, Serialize, EventContent)]
#[cfg_attr(not(feature = "unstable-exhaustive-types"), non_exhaustive)]
#[ruma_event(type = "m.key.verification.key", kind = MessageLike)]
pub struct KeyVerificationKeyEventContent {
pub key: Base64,
#[serde(rename = "m.relates_to")]
pub relates_to: Relation,
}
impl KeyVerificationKeyEventContent {
pub fn new(key: Base64, relates_to: Relation) -> Self {
Self { key, relates_to }
}
}