windmill_api/models/
export_installation_200_response.rs1use crate::models;
12use serde::{Deserialize, Serialize};
13
14#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
15pub struct ExportInstallation200Response {
16 #[serde(rename = "jwt_token", skip_serializing_if = "Option::is_none")]
17 pub jwt_token: Option<String>,
18}
19
20impl ExportInstallation200Response {
21 pub fn new() -> ExportInstallation200Response {
22 ExportInstallation200Response {
23 jwt_token: None,
24 }
25 }
26}
27