use crate::JanusId;
use serde::Deserialize;
#[derive(Clone, PartialEq, Eq, PartialOrd, Ord, Hash, Debug, Deserialize)]
pub struct LegacyVideoRoomCreatedRsp {
pub room: JanusId,
pub permanent: bool,
}
#[derive(Clone, PartialEq, Eq, PartialOrd, Ord, Hash, Debug, Deserialize)]
pub struct LegacyVideoRoomExistsRsp {
pub room: JanusId,
pub exists: bool,
}
#[derive(Clone, PartialEq, Eq, PartialOrd, Ord, Hash, Debug, Deserialize)]
pub struct LegacyVideoRoomPublisher {
pub id: JanusId,
pub display: Option<String>,
pub substream: Option<u8>,
}