openapi_merge/input/description.rs
1use super::*;
2
3#[derive(Debug, Deserialize)]
4#[serde(rename_all = "camelCase")]
5pub struct Description {
6 pub append: bool,
7 pub title: Option<Title>,
8}
9
10#[derive(Debug, Deserialize)]
11#[serde(rename_all = "camelCase")]
12pub struct Title {
13 pub heading_level: Option<u8>,
14 pub value: String,
15}