srs_client/http_api/vhost.rs
1use super::common::{Hls, Kbps};
2use serde::{Deserialize, Serialize};
3
4#[derive(Serialize, Deserialize, Debug)]
5pub struct Vhost {
6 pub id: String,
7 pub name: String,
8 pub enabled: bool,
9 pub clients: i64,
10 pub streams: i64,
11 pub send_bytes: i64,
12 pub recv_bytes: i64,
13 pub kbps: Kbps,
14 pub hls: Hls,
15}