1#[derive(Default, Debug)]
2pub struct ContainerDelete {
3/// If the container is running, kill it before removing it.
4pub force: Option<bool>,
5/// Remove the volumes associated with the container.
6pub v: Option<bool>,
7/// not supported
8pub link: Option<bool>,
9}