/*
* Windmill API
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document: 1.776.0
* Contact: contact@windmill.dev
* Generated by: https://openapi-generator.tech
*/
use crate::models;
use serde::{Deserialize, Serialize};
/// AssetGraphRunnablesInnerDbt : Set on a `dbt` script, which owns a whole project rather than a single output. Omitted otherwise.
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct AssetGraphRunnablesInnerDbt {
#[serde(rename = "model_count")]
pub model_count: i32,
}
impl AssetGraphRunnablesInnerDbt {
/// Set on a `dbt` script, which owns a whole project rather than a single output. Omitted otherwise.
pub fn new(model_count: i32) -> AssetGraphRunnablesInnerDbt {
AssetGraphRunnablesInnerDbt {
model_count,
}
}
}