/*
* 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 GetWithdrawalsResponseResultsInnerLinks {
#[serde(rename = "withdrawal", skip_serializing_if = "Option::is_none")]
pub withdrawal: Option<String>,
}
impl GetWithdrawalsResponseResultsInnerLinks {
pub fn new() -> GetWithdrawalsResponseResultsInnerLinks {
GetWithdrawalsResponseResultsInnerLinks { withdrawal: None }
}
}