/*
* 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 ServiceInstanceMetadata {
#[serde(rename = "labels", skip_serializing_if = "Option::is_none")]
pub labels: Option<serde_json::Value>,
#[serde(rename = "attributes", skip_serializing_if = "Option::is_none")]
pub attributes: Option<serde_json::Value>,
}
impl ServiceInstanceMetadata {
pub fn new() -> ServiceInstanceMetadata {
ServiceInstanceMetadata {
labels: None,
attributes: None,
}
}
}