podman_rest_client/v5/models/exec_start_libpod_body.rs
1use serde::{Deserialize, Serialize};
2#[derive(Default, Debug, Serialize, Deserialize)]
3pub struct ExecStartLibpodBody {
4 /// Detach from the command.
5 #[serde(rename = "Detach")]
6 pub detach: Option<bool>,
7 /// Allocate a pseudo-TTY.
8 #[serde(rename = "Tty")]
9 pub tty: Option<bool>,
10 /// Height of the TTY session in characters. Tty must be set to true to use it.
11 pub h: Option<i64>,
12 /// Width of the TTY session in characters. Tty must be set to true to use it.
13 pub w: Option<i64>,
14}