use opentalk_types_common::{
call_in::{CallInId, CallInPassword},
users::DisplayName,
};
use serde::{Deserialize, Serialize};
#[derive(Debug, Clone, Eq, PartialEq, Serialize, Deserialize)]
#[cfg_attr(feature = "utoipa", derive(utoipa::ToSchema))]
pub struct PostCallInStartRoomServerRequestBody {
pub id: CallInId,
pub pin: CallInPassword,
pub display_name: DisplayName,
}