windmill_api/models/
create_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.539.1
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 CreateVariable {
16    /// The path to the variable
17    #[serde(rename = "path")]
18    pub path: String,
19    /// The value of the variable
20    #[serde(rename = "value")]
21    pub value: String,
22    /// Whether the variable is a secret
23    #[serde(rename = "is_secret")]
24    pub is_secret: bool,
25    /// The description of the variable
26    #[serde(rename = "description")]
27    pub description: String,
28    /// The account identifier
29    #[serde(rename = "account", skip_serializing_if = "Option::is_none")]
30    pub account: Option<i32>,
31    /// Whether the variable is an OAuth variable
32    #[serde(rename = "is_oauth", skip_serializing_if = "Option::is_none")]
33    pub is_oauth: Option<bool>,
34    /// The expiration date of the variable
35    #[serde(rename = "expires_at", skip_serializing_if = "Option::is_none")]
36    pub expires_at: Option<String>,
37}
38
39impl CreateVariable {
40    pub fn new(path: String, value: String, is_secret: bool, description: String) -> CreateVariable {
41        CreateVariable {
42            path,
43            value,
44            is_secret,
45            description,
46            account: None,
47            is_oauth: None,
48            expires_at: None,
49        }
50    }
51}
52