/*
* BTCPay Greenfield API
*
* A full API to use your BTCPay Server
*
* The version of the OpenAPI document: v1
*
* Generated by: https://openapi-generator.tech
*/
#[derive(Clone, Debug, PartialEq, Default, Serialize, Deserialize)]
pub struct WebhookInvoiceExpiredEventAllOf {
/// Whether the invoice received some payments before being expired.
#[serde(rename = "partiallyPaid", skip_serializing_if = "Option::is_none")]
pub partially_paid: Option<bool>,
}
impl WebhookInvoiceExpiredEventAllOf {
pub fn new() -> WebhookInvoiceExpiredEventAllOf {
WebhookInvoiceExpiredEventAllOf {
partially_paid: None,
}
}
}