windmill-api 1.684.0

No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
Documentation
/*
 * Windmill API
 *
 * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
 *
 * The version of the OpenAPI document: 1.684.0
 * Contact: contact@windmill.dev
 * Generated by: https://openapi-generator.tech
 */

use crate::models;
use serde::{Deserialize, Serialize};

#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct GetTutorialProgress200Response {
    #[serde(rename = "progress", skip_serializing_if = "Option::is_none")]
    pub progress: Option<i32>,
    #[serde(rename = "skipped_all", skip_serializing_if = "Option::is_none")]
    pub skipped_all: Option<bool>,
}

impl GetTutorialProgress200Response {
    pub fn new() -> GetTutorialProgress200Response {
        GetTutorialProgress200Response {
            progress: None,
            skipped_all: None,
        }
    }
}