use super::CiString;
#[derive(Clone, Debug, PartialEq, Eq, serde::Serialize, serde::Deserialize)]
pub struct StopSession {
/// URL that the CommandResult POST should be sent to. This URL might contain
/// an unique ID to be able to distinguish between StopSession requests.
pub response_url: url::Url,
/// Session.id of the Session that is requested to be stopped.
pub session_id: CiString<36>,
}