Documentation
/*
 * The Jira Cloud platform REST API
 *
 * Jira Cloud platform REST API documentation
 *
 * The version of the OpenAPI document: 1001.0.0-SNAPSHOT
 * Contact: ecosystem@atlassian.com
 * Generated by: https://openapi-generator.tech
 */

/// JsonContextVariable : A JSON object with custom content.



#[derive(Clone, Debug, PartialEq, Default, Serialize, Deserialize)]
pub struct JsonContextVariable {
    /// Type of custom context variable.
    #[serde(rename = "type")]
    pub _type: String,
    /// A JSON object containing custom content.
    #[serde(rename = "value", skip_serializing_if = "Option::is_none")]
    pub value: Option<serde_json::Value>,
}

impl JsonContextVariable {
    /// A JSON object with custom content.
    pub fn new(_type: String) -> JsonContextVariable {
        JsonContextVariable {
            _type,
            value: None,
        }
    }
}