ocpi 0.3.5

Unofficial, in progress, OCPI implementation
Documentation
1
2
3
4
5
6
7
8
9
10
11
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>,
}