/*
* 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 WebhookInvoiceEventAllOf {
/// The store id of the invoice's event
#[serde(rename = "storeId", skip_serializing_if = "Option::is_none")]
pub store_id: Option<String>,
/// The invoice id of the invoice's event
#[serde(rename = "invoiceId", skip_serializing_if = "Option::is_none")]
pub invoice_id: Option<String>,
}
impl WebhookInvoiceEventAllOf {
pub fn new() -> WebhookInvoiceEventAllOf {
WebhookInvoiceEventAllOf {
store_id: None,
invoice_id: None,
}
}
}