logo
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
//! Types for the [`m.poll.end`] event.

use ruma_macros::EventContent;
use serde::{Deserialize, Serialize};

use super::ReferenceRelation;
use crate::OwnedEventId;

/// The payload for a poll end event.
#[derive(Clone, Debug, Serialize, Deserialize, EventContent)]
#[cfg_attr(not(feature = "unstable-exhaustive-types"), non_exhaustive)]
#[ruma_event(type = "org.matrix.msc3381.poll.end", alias = "m.poll.end", kind = MessageLike)]
pub struct PollEndEventContent {
    /// The poll end content of the message.
    #[serde(rename = "org.matrix.msc3381.poll.end", alias = "m.poll.end")]
    pub poll_end: PollEndContent,

    /// Information about the poll start event this responds to.
    #[serde(rename = "m.relates_to")]
    pub relates_to: ReferenceRelation,
}

impl PollEndEventContent {
    /// Creates a new `PollEndEventContent` that responds to the given poll start event ID,
    /// with the given poll end content.
    pub fn new(poll_end: PollEndContent, poll_start_id: OwnedEventId) -> Self {
        Self { poll_end, relates_to: ReferenceRelation::new(poll_start_id) }
    }
}

/// Poll end content.
///
/// This is currently empty.
#[derive(Clone, Debug, Default, Serialize, Deserialize)]
#[cfg_attr(not(feature = "unstable-exhaustive-types"), non_exhaustive)]
pub struct PollEndContent {}

impl PollEndContent {
    /// Creates a new empty `PollEndContent`.
    pub fn new() -> Self {
        Self {}
    }
}