1
2
3
4
5
6
7
8
9
10
11
12
13
use super::*;

#[derive(
    Debug, Default, PartialEq, Eq, Allocative, ProvidesStaticType, Clone, Deserialize, Serialize,
)]
pub struct Input {
    pub name: String,
    pub input_type: RustType,
    #[serde(default)]
    pub default_value: Option<String>,
    #[serde(default)]
    pub is_depend: bool,
}