ruma_events/call/reject.rs
1//! Types for the [`m.call.reject`] event.
2//!
3//! [`m.call.reject`]: https://spec.matrix.org/latest/client-server-api/#mcallreject
4
5use ruma_common::{OwnedVoipId, VoipVersionId};
6use ruma_macros::EventContent;
7use serde::{Deserialize, Serialize};
8
9/// **Added in VoIP version 1.** The content of an `m.call.reject` event.
10///
11/// Starting from VoIP version 1, this event is sent by the callee to reject an invite.
12#[derive(Clone, Debug, Deserialize, Serialize, EventContent)]
13#[cfg_attr(not(ruma_unstable_exhaustive_types), non_exhaustive)]
14#[ruma_event(type = "m.call.reject", kind = MessageLike)]
15pub struct CallRejectEventContent {
16 /// The ID of the call this event relates to.
17 pub call_id: OwnedVoipId,
18
19 /// A unique ID for this session for the duration of the call.
20 pub party_id: OwnedVoipId,
21
22 /// The version of the VoIP specification this messages adheres to.
23 ///
24 /// Cannot be older than `VoipVersionId::V1`.
25 pub version: VoipVersionId,
26}
27
28impl CallRejectEventContent {
29 /// Creates a `CallRejectEventContent` with the given call ID, VoIP version and party ID.
30 pub fn new(call_id: OwnedVoipId, party_id: OwnedVoipId, version: VoipVersionId) -> Self {
31 Self { call_id, party_id, version }
32 }
33
34 /// Convenience method to create a version 1 `CallRejectEventContent` with all the required
35 /// fields.
36 pub fn version_1(call_id: OwnedVoipId, party_id: OwnedVoipId) -> Self {
37 Self::new(call_id, party_id, VoipVersionId::V1)
38 }
39}