mirror of
https://github.com/bitcoinresearchkit/brk.git
synced 2026-08-05 15:13:06 -07:00
13 lines
301 B
Rust
13 lines
301 B
Rust
use serde_json::Value;
|
|
|
|
/// Parameter information.
|
|
#[derive(Debug, Clone)]
|
|
pub struct Parameter {
|
|
pub name: String,
|
|
pub required: bool,
|
|
pub param_type: String,
|
|
pub description: Option<String>,
|
|
/// Original OpenAPI/JSON Schema for schema-driven generators.
|
|
pub schema: Value,
|
|
}
|