podman_rest_client/v5/models/authenticate_ok_body.rs
1use serde::{Deserialize, Serialize};
2#[derive(Default, Debug, Serialize, Deserialize)]
3/// AuthenticateOKBody authenticate o k body
4pub struct AuthenticateOkBody {
5 /// An opaque token used to authenticate a user after a successful login
6 #[serde(rename = "IdentityToken")]
7 pub identity_token: String,
8 /// The status of the authentication
9 #[serde(rename = "Status")]
10 pub status: String,
11}