opentalk-roomserver-types-timer 0.0.3

OpenTalk RoomServer Types Timer
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
// SPDX-FileCopyrightText: OpenTalk GmbH <mail@opentalk.eu>
//
// SPDX-License-Identifier: EUPL-1.2

use serde::{Deserialize, Serialize};

/// Stop a running timer
#[derive(Debug, Serialize, Deserialize)]
pub struct Stop {
    /// An optional reason for the stop
    pub reason: Option<String>,
}