lightspark/objects/release_payment_preimage_input.rs
1// Copyright ©, 2023-present, Lightspark Group, Inc. - All Rights Reserved
2use serde::{Deserialize, Serialize};
3
4#[derive(Debug, Clone, Deserialize, Serialize)]
5pub struct ReleasePaymentPreimageInput {
6 /// The invoice the preimage belongs to.
7 pub invoice_id: String,
8
9 /// The preimage to release.
10 pub payment_preimage: String,
11}