[C#] Check in initial auto-generated C# bindings
[ldk-java] / c_sharp / src / org / ldk / enums / ConfirmationTarget.cs
diff --git a/c_sharp/src/org/ldk/enums/ConfirmationTarget.cs b/c_sharp/src/org/ldk/enums/ConfirmationTarget.cs
new file mode 100644 (file)
index 0000000..47f1cf5
--- /dev/null
@@ -0,0 +1,18 @@
+namespace org { namespace ldk { namespace enums {/**
+ * An enum that represents the speed at which we want a transaction to confirm used for feerate
+ * estimation.
+ */
+public enum ConfirmationTarget {
+       /**
+        * We are happy with this transaction confirming slowly when feerate drops some.
+        */
+       LDKConfirmationTarget_Background,
+       /**
+        * We'd like this transaction to confirm without major delay, but 12-18 blocks is fine.
+        */
+       LDKConfirmationTarget_Normal,
+       /**
+        * We'd like this transaction to confirm in the next few blocks.
+        */
+       LDKConfirmationTarget_HighPriority,
+}} } }