Add SdkEvent for refundable swap (#683)

This commit is contained in:
Daniel Granhão
2025-01-21 14:43:23 +00:00
committed by GitHub
parent 0cdfa2057c
commit 6760960cb0
13 changed files with 221 additions and 44 deletions

View File

@@ -4790,6 +4790,10 @@ final class wire_cst_SdkEvent_PaymentPending extends ffi.Struct {
external ffi.Pointer<wire_cst_payment> details;
}
final class wire_cst_SdkEvent_PaymentRefundable extends ffi.Struct {
external ffi.Pointer<wire_cst_payment> details;
}
final class wire_cst_SdkEvent_PaymentRefunded extends ffi.Struct {
external ffi.Pointer<wire_cst_payment> details;
}
@@ -4815,6 +4819,8 @@ final class SdkEventKind extends ffi.Union {
external wire_cst_SdkEvent_PaymentPending PaymentPending;
external wire_cst_SdkEvent_PaymentRefundable PaymentRefundable;
external wire_cst_SdkEvent_PaymentRefunded PaymentRefunded;
external wire_cst_SdkEvent_PaymentRefundPending PaymentRefundPending;