[C#] Check in initial auto-generated C# bindings
[ldk-java] / c_sharp / src / org / ldk / structs / Balance.cs
diff --git a/c_sharp/src/org/ldk/structs/Balance.cs b/c_sharp/src/org/ldk/structs/Balance.cs
new file mode 100644 (file)
index 0000000..3214edf
--- /dev/null
@@ -0,0 +1,236 @@
+using org.ldk.impl;
+using org.ldk.enums;
+using org.ldk.util;
+using System;
+
+namespace org { namespace ldk { namespace structs {
+
+/**
+ * Details about the balance(s) available for spending once the channel appears on chain.
+ * 
+ * See [`ChannelMonitor::get_claimable_balances`] for more details on when these will or will not
+ * be provided.
+ */
+public class Balance : CommonBase {
+       protected Balance(object _dummy, long ptr) : base(ptr) { }
+       ~Balance() {
+               if (ptr != 0) { bindings.Balance_free(ptr); }
+       }
+
+       internal static Balance constr_from_ptr(long ptr) {
+               long raw_ty = bindings.LDKBalance_ty_from_ptr(ptr);
+               switch (raw_ty) {
+                       case 0: return new Balance_ClaimableOnChannelClose(ptr);
+                       case 1: return new Balance_ClaimableAwaitingConfirmations(ptr);
+                       case 2: return new Balance_ContentiousClaimable(ptr);
+                       case 3: return new Balance_MaybeTimeoutClaimableHTLC(ptr);
+                       case 4: return new Balance_MaybePreimageClaimableHTLC(ptr);
+                       case 5: return new Balance_CounterpartyRevokedOutputClaimable(ptr);
+                       default:
+                               throw new ArgumentException("Impossible enum variant");
+               }
+       }
+
+       /** A Balance of type ClaimableOnChannelClose */
+       public class Balance_ClaimableOnChannelClose : Balance {
+               /**
+                * The amount available to claim, in satoshis, excluding the on-chain fees which will be
+                * required to do so.
+                */
+               public long claimable_amount_satoshis;
+               internal Balance_ClaimableOnChannelClose(long ptr) : base(null, ptr) {
+                       this.claimable_amount_satoshis = bindings.LDKBalance_ClaimableOnChannelClose_get_claimable_amount_satoshis(ptr);
+               }
+       }
+       /** A Balance of type ClaimableAwaitingConfirmations */
+       public class Balance_ClaimableAwaitingConfirmations : Balance {
+               /**
+                * The amount available to claim, in satoshis, possibly excluding the on-chain fees which
+                * were spent in broadcasting the transaction.
+                */
+               public long claimable_amount_satoshis;
+               /**
+                * The height at which an [`Event::SpendableOutputs`] event will be generated for this
+                * amount.
+                */
+               public int confirmation_height;
+               internal Balance_ClaimableAwaitingConfirmations(long ptr) : base(null, ptr) {
+                       this.claimable_amount_satoshis = bindings.LDKBalance_ClaimableAwaitingConfirmations_get_claimable_amount_satoshis(ptr);
+                       this.confirmation_height = bindings.LDKBalance_ClaimableAwaitingConfirmations_get_confirmation_height(ptr);
+               }
+       }
+       /** A Balance of type ContentiousClaimable */
+       public class Balance_ContentiousClaimable : Balance {
+               /**
+                * The amount available to claim, in satoshis, excluding the on-chain fees which will be
+                * required to do so.
+                */
+               public long claimable_amount_satoshis;
+               /**
+                * The height at which the counterparty may be able to claim the balance if we have not
+                * done so.
+                */
+               public int timeout_height;
+               internal Balance_ContentiousClaimable(long ptr) : base(null, ptr) {
+                       this.claimable_amount_satoshis = bindings.LDKBalance_ContentiousClaimable_get_claimable_amount_satoshis(ptr);
+                       this.timeout_height = bindings.LDKBalance_ContentiousClaimable_get_timeout_height(ptr);
+               }
+       }
+       /** A Balance of type MaybeTimeoutClaimableHTLC */
+       public class Balance_MaybeTimeoutClaimableHTLC : Balance {
+               /**
+                * The amount potentially available to claim, in satoshis, excluding the on-chain fees
+                * which will be required to do so.
+                */
+               public long claimable_amount_satoshis;
+               /**
+                * The height at which we will be able to claim the balance if our counterparty has not
+                * done so.
+                */
+               public int claimable_height;
+               internal Balance_MaybeTimeoutClaimableHTLC(long ptr) : base(null, ptr) {
+                       this.claimable_amount_satoshis = bindings.LDKBalance_MaybeTimeoutClaimableHTLC_get_claimable_amount_satoshis(ptr);
+                       this.claimable_height = bindings.LDKBalance_MaybeTimeoutClaimableHTLC_get_claimable_height(ptr);
+               }
+       }
+       /** A Balance of type MaybePreimageClaimableHTLC */
+       public class Balance_MaybePreimageClaimableHTLC : Balance {
+               /**
+                * The amount potentially available to claim, in satoshis, excluding the on-chain fees
+                * which will be required to do so.
+                */
+               public long claimable_amount_satoshis;
+               /**
+                * The height at which our counterparty will be able to claim the balance if we have not
+                * yet received the preimage and claimed it ourselves.
+                */
+               public int expiry_height;
+               internal Balance_MaybePreimageClaimableHTLC(long ptr) : base(null, ptr) {
+                       this.claimable_amount_satoshis = bindings.LDKBalance_MaybePreimageClaimableHTLC_get_claimable_amount_satoshis(ptr);
+                       this.expiry_height = bindings.LDKBalance_MaybePreimageClaimableHTLC_get_expiry_height(ptr);
+               }
+       }
+       /** A Balance of type CounterpartyRevokedOutputClaimable */
+       public class Balance_CounterpartyRevokedOutputClaimable : Balance {
+               /**
+                * The amount, in satoshis, of the output which we can claim.
+                * 
+                * Note that for outputs from HTLC balances this may be excluding some on-chain fees that
+                * were already spent.
+                */
+               public long claimable_amount_satoshis;
+               internal Balance_CounterpartyRevokedOutputClaimable(long ptr) : base(null, ptr) {
+                       this.claimable_amount_satoshis = bindings.LDKBalance_CounterpartyRevokedOutputClaimable_get_claimable_amount_satoshis(ptr);
+               }
+       }
+       internal long clone_ptr() {
+               long ret = bindings.Balance_clone_ptr(this.ptr);
+               GC.KeepAlive(this);
+               return ret;
+       }
+
+       /**
+        * Creates a copy of the Balance
+        */
+       public Balance clone() {
+               long ret = bindings.Balance_clone(this.ptr);
+               GC.KeepAlive(this);
+               if (ret >= 0 && ret <= 4096) { return null; }
+               org.ldk.structs.Balance ret_hu_conv = org.ldk.structs.Balance.constr_from_ptr(ret);
+               if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.AddLast(this); };
+               return ret_hu_conv;
+       }
+
+       /**
+        * Utility method to constructs a new ClaimableOnChannelClose-variant Balance
+        */
+       public static Balance claimable_on_channel_close(long claimable_amount_satoshis) {
+               long ret = bindings.Balance_claimable_on_channel_close(claimable_amount_satoshis);
+               GC.KeepAlive(claimable_amount_satoshis);
+               if (ret >= 0 && ret <= 4096) { return null; }
+               org.ldk.structs.Balance ret_hu_conv = org.ldk.structs.Balance.constr_from_ptr(ret);
+               if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.AddLast(ret_hu_conv); };
+               return ret_hu_conv;
+       }
+
+       /**
+        * Utility method to constructs a new ClaimableAwaitingConfirmations-variant Balance
+        */
+       public static Balance claimable_awaiting_confirmations(long claimable_amount_satoshis, int confirmation_height) {
+               long ret = bindings.Balance_claimable_awaiting_confirmations(claimable_amount_satoshis, confirmation_height);
+               GC.KeepAlive(claimable_amount_satoshis);
+               GC.KeepAlive(confirmation_height);
+               if (ret >= 0 && ret <= 4096) { return null; }
+               org.ldk.structs.Balance ret_hu_conv = org.ldk.structs.Balance.constr_from_ptr(ret);
+               if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.AddLast(ret_hu_conv); };
+               return ret_hu_conv;
+       }
+
+       /**
+        * Utility method to constructs a new ContentiousClaimable-variant Balance
+        */
+       public static Balance contentious_claimable(long claimable_amount_satoshis, int timeout_height) {
+               long ret = bindings.Balance_contentious_claimable(claimable_amount_satoshis, timeout_height);
+               GC.KeepAlive(claimable_amount_satoshis);
+               GC.KeepAlive(timeout_height);
+               if (ret >= 0 && ret <= 4096) { return null; }
+               org.ldk.structs.Balance ret_hu_conv = org.ldk.structs.Balance.constr_from_ptr(ret);
+               if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.AddLast(ret_hu_conv); };
+               return ret_hu_conv;
+       }
+
+       /**
+        * Utility method to constructs a new MaybeTimeoutClaimableHTLC-variant Balance
+        */
+       public static Balance maybe_timeout_claimable_htlc(long claimable_amount_satoshis, int claimable_height) {
+               long ret = bindings.Balance_maybe_timeout_claimable_htlc(claimable_amount_satoshis, claimable_height);
+               GC.KeepAlive(claimable_amount_satoshis);
+               GC.KeepAlive(claimable_height);
+               if (ret >= 0 && ret <= 4096) { return null; }
+               org.ldk.structs.Balance ret_hu_conv = org.ldk.structs.Balance.constr_from_ptr(ret);
+               if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.AddLast(ret_hu_conv); };
+               return ret_hu_conv;
+       }
+
+       /**
+        * Utility method to constructs a new MaybePreimageClaimableHTLC-variant Balance
+        */
+       public static Balance maybe_preimage_claimable_htlc(long claimable_amount_satoshis, int expiry_height) {
+               long ret = bindings.Balance_maybe_preimage_claimable_htlc(claimable_amount_satoshis, expiry_height);
+               GC.KeepAlive(claimable_amount_satoshis);
+               GC.KeepAlive(expiry_height);
+               if (ret >= 0 && ret <= 4096) { return null; }
+               org.ldk.structs.Balance ret_hu_conv = org.ldk.structs.Balance.constr_from_ptr(ret);
+               if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.AddLast(ret_hu_conv); };
+               return ret_hu_conv;
+       }
+
+       /**
+        * Utility method to constructs a new CounterpartyRevokedOutputClaimable-variant Balance
+        */
+       public static Balance counterparty_revoked_output_claimable(long claimable_amount_satoshis) {
+               long ret = bindings.Balance_counterparty_revoked_output_claimable(claimable_amount_satoshis);
+               GC.KeepAlive(claimable_amount_satoshis);
+               if (ret >= 0 && ret <= 4096) { return null; }
+               org.ldk.structs.Balance ret_hu_conv = org.ldk.structs.Balance.constr_from_ptr(ret);
+               if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.AddLast(ret_hu_conv); };
+               return ret_hu_conv;
+       }
+
+       /**
+        * Checks if two Balances contain equal inner contents.
+        * This ignores pointers and is_owned flags and looks at the values in fields.
+        */
+       public bool eq(org.ldk.structs.Balance b) {
+               bool ret = bindings.Balance_eq(this.ptr, b == null ? 0 : b.ptr);
+               GC.KeepAlive(this);
+               GC.KeepAlive(b);
+               return ret;
+       }
+
+       public override bool Equals(object o) {
+               if (!(o is Balance)) return false;
+               return this.eq((Balance)o);
+       }
+}
+} } }