echo_library/types/input.rs
1use super::*;
2
3#[derive(
4 Debug, Default, PartialEq, Eq, Allocative, ProvidesStaticType, Clone, Deserialize, Serialize,
5)]
6pub struct Input {
7 pub name: String,
8 pub input_type: RustType,
9 #[serde(default)]
10 pub default_value: Option<String>,
11 #[serde(default)]
12 pub is_depend: bool,
13}