rocl 0.0.7

Rust OSB client library used by rocs generated with openapi-generator
Documentation
/*
 * Open Service Broker API
 *
 * The Open Service Broker API defines an HTTP(S) interface between Platforms and Service Brokers.
 *
 * The version of the OpenAPI document: master - might contain changes that are not yet released
 * Contact: open-service-broker-api@googlegroups.com
 * Generated by: https://openapi-generator.tech
 */




#[derive(Clone, Debug, PartialEq, Serialize, Deserialize)]
pub struct Schemas {
    #[serde(rename = "service_instance", skip_serializing_if = "Option::is_none")]
    pub service_instance: Option<Box<crate::models::ServiceInstanceSchema>>,
    #[serde(rename = "service_binding", skip_serializing_if = "Option::is_none")]
    pub service_binding: Option<Box<crate::models::ServiceBindingSchema>>,
}

impl Schemas {
    pub fn new() -> Schemas {
        Schemas {
            service_instance: None,
            service_binding: None,
        }
    }
}