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 }
}
}