marlowe_client 0.0.5

HTTP client for the Marlowe Runtime REST API
Documentation
/*
 * 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 GreaterOrEqualObject {
    #[serde(rename = "ge_than")]
    pub ge_than: Box<crate::models::ValueObject>,
    #[serde(rename = "value")]
    pub value: Box<crate::models::ValueObject>,
}

impl GreaterOrEqualObject {
    pub fn new(
        ge_than: crate::models::ValueObject,
        value: crate::models::ValueObject,
    ) -> GreaterOrEqualObject {
        GreaterOrEqualObject {
            ge_than: Box::new(ge_than),
            value: Box::new(value),
        }
    }
}