Skip to main content

windmill_api/models/
edit_variable.rs

1/*
2 * Windmill API
3 *
4 * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
5 *
6 * The version of the OpenAPI document: 1.699.0
7 * Contact: contact@windmill.dev
8 * Generated by: https://openapi-generator.tech
9 */
10
11use crate::models;
12use serde::{Deserialize, Serialize};
13
14#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
15pub struct EditVariable {
16    /// The path to the variable
17    #[serde(rename = "path", skip_serializing_if = "Option::is_none")]
18    pub path: Option<String>,
19    /// The new value of the variable
20    #[serde(rename = "value", skip_serializing_if = "Option::is_none")]
21    pub value: Option<String>,
22    /// Whether the variable is a secret
23    #[serde(rename = "is_secret", skip_serializing_if = "Option::is_none")]
24    pub is_secret: Option<bool>,
25    /// The new description of the variable
26    #[serde(rename = "description", skip_serializing_if = "Option::is_none")]
27    pub description: Option<String>,
28    #[serde(rename = "labels", skip_serializing_if = "Option::is_none")]
29    pub labels: Option<Vec<String>>,
30    #[serde(rename = "ws_specific", skip_serializing_if = "Option::is_none")]
31    pub ws_specific: Option<bool>,
32}
33
34impl EditVariable {
35    pub fn new() -> EditVariable {
36        EditVariable {
37            path: None,
38            value: None,
39            is_secret: None,
40            description: None,
41            labels: None,
42            ws_specific: None,
43        }
44    }
45}
46