Skip to main content

openrtc/
presence.rs

1#[derive(Clone, Debug, PartialEq)]
2pub struct PresenceLoopParams {
3    pub user_id: String,
4    pub device_name: String,
5    pub ticket: String,
6    pub metadata: Option<String>,
7}
8
9#[derive(Clone, Debug, PartialEq)]
10pub enum PresenceCommand {
11    RefreshLiveNow,
12    RepublishDurableNow,
13    Stop,
14}