Files
brk/crates/brk_bindgen/src/openapi/parameter.rs
T
2026-05-01 19:14:15 +02:00

9 lines
187 B
Rust

/// Parameter information.
#[derive(Debug, Clone)]
pub struct Parameter {
pub name: String,
pub required: bool,
pub param_type: String,
pub description: Option<String>,
}