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

#[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct Description {
    pub append: bool,
    pub title: Option<Title>,
}

#[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct Title {
    pub heading_level: Option<u8>,
    pub value: String,
}