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
use ruma_macros::EventContent;
use serde::{Deserialize, Serialize};
use crate::{OwnedVoipId, VoipVersionId};
#[derive(Clone, Debug, Deserialize, Serialize, EventContent)]
#[cfg_attr(not(feature = "unstable-exhaustive-types"), non_exhaustive)]
#[ruma_event(type = "m.call.reject", kind = MessageLike)]
pub struct CallRejectEventContent {
pub call_id: OwnedVoipId,
pub party_id: OwnedVoipId,
pub version: VoipVersionId,
}
impl CallRejectEventContent {
pub fn new(call_id: OwnedVoipId, party_id: OwnedVoipId, version: VoipVersionId) -> Self {
Self { call_id, party_id, version }
}
pub fn version_1(call_id: OwnedVoipId, party_id: OwnedVoipId) -> Self {
Self::new(call_id, party_id, VoipVersionId::V1)
}
}