/*
* Marlowe Runtime REST API
*
* REST API for Marlowe Runtime
*
* The version of the OpenAPI document: 0.0.5.1
*
* Generated by: https://openapi-generator.tech
*/
#[derive(Clone, Debug, PartialEq, Serialize, Deserialize)]
pub struct Add {
#[serde(rename = "add")]
pub add: Box<crate::models::Value>,
#[serde(rename = "and")]
pub and: Box<crate::models::Value>,
}
impl Add {
pub fn new(add: crate::models::Value, and: crate::models::Value) -> Add {
Add {
add: Box::new(add),
and: Box::new(and),
}
}
}