jira2/models/
rich_text.rs

1/*
2 * The Jira Cloud platform REST API
3 *
4 * Jira Cloud platform REST API documentation
5 *
6 * The version of the OpenAPI document: 1001.0.0-SNAPSHOT
7 * Contact: ecosystem@atlassian.com
8 * Generated by: https://openapi-generator.tech
9 */
10
11
12
13
14#[derive(Clone, Debug, PartialEq, Default, Serialize, Deserialize)]
15pub struct RichText {
16    #[serde(rename = "emptyAdf", skip_serializing_if = "Option::is_none")]
17    pub empty_adf: Option<bool>,
18    #[serde(rename = "finalised", skip_serializing_if = "Option::is_none")]
19    pub finalised: Option<bool>,
20    #[serde(rename = "valueSet", skip_serializing_if = "Option::is_none")]
21    pub value_set: Option<bool>,
22}
23
24impl RichText {
25    pub fn new() -> RichText {
26        RichText {
27            empty_adf: None,
28            finalised: None,
29            value_set: None,
30        }
31    }
32}
33
34