Merge pull request #139 from TheBlueMatt/main
[ldk-java] / c_sharp / src / org / ldk / structs / Option_TxidZ.cs
diff --git a/c_sharp/src/org/ldk/structs/Option_TxidZ.cs b/c_sharp/src/org/ldk/structs/Option_TxidZ.cs
new file mode 100644 (file)
index 0000000..06d31ec
--- /dev/null
@@ -0,0 +1,82 @@
+using org.ldk.impl;
+using org.ldk.enums;
+using org.ldk.util;
+using System;
+
+namespace org { namespace ldk { namespace structs {
+
+/**
+ * An enum which can either contain a crate::c_types::ThirtyTwoBytes or not
+ */
+public class Option_TxidZ : CommonBase {
+       protected Option_TxidZ(object _dummy, long ptr) : base(ptr) { }
+       ~Option_TxidZ() {
+               if (ptr != 0) { bindings.COption_TxidZ_free(ptr); }
+       }
+
+       internal static Option_TxidZ constr_from_ptr(long ptr) {
+               long raw_ty = bindings.LDKCOption_TxidZ_ty_from_ptr(ptr);
+               switch (raw_ty) {
+                       case 0: return new Option_TxidZ_Some(ptr);
+                       case 1: return new Option_TxidZ_None(ptr);
+                       default:
+                               throw new ArgumentException("Impossible enum variant");
+               }
+       }
+
+       /** A Option_TxidZ of type Some */
+       public class Option_TxidZ_Some : Option_TxidZ {
+               public byte[] some;
+               internal Option_TxidZ_Some(long ptr) : base(null, ptr) {
+                       this.some = bindings.LDKCOption_TxidZ_Some_get_some(ptr);
+               }
+       }
+       /** A Option_TxidZ of type None */
+       public class Option_TxidZ_None : Option_TxidZ {
+               internal Option_TxidZ_None(long ptr) : base(null, ptr) {
+               }
+       }
+       /**
+        * Constructs a new COption_TxidZ containing a crate::c_types::ThirtyTwoBytes
+        */
+       public static Option_TxidZ some(byte[] o) {
+               long ret = bindings.COption_TxidZ_some(InternalUtils.check_arr_len(o, 32));
+               GC.KeepAlive(o);
+               if (ret >= 0 && ret <= 4096) { return null; }
+               org.ldk.structs.Option_TxidZ ret_hu_conv = org.ldk.structs.Option_TxidZ.constr_from_ptr(ret);
+               if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.AddLast(ret_hu_conv); };
+               return ret_hu_conv;
+       }
+
+       /**
+        * Constructs a new COption_TxidZ containing nothing
+        */
+       public static Option_TxidZ none() {
+               long ret = bindings.COption_TxidZ_none();
+               if (ret >= 0 && ret <= 4096) { return null; }
+               org.ldk.structs.Option_TxidZ ret_hu_conv = org.ldk.structs.Option_TxidZ.constr_from_ptr(ret);
+               if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.AddLast(ret_hu_conv); };
+               return ret_hu_conv;
+       }
+
+       internal long clone_ptr() {
+               long ret = bindings.COption_TxidZ_clone_ptr(this.ptr);
+               GC.KeepAlive(this);
+               return ret;
+       }
+
+       /**
+        * Creates a new COption_TxidZ which has the same data as `orig`
+        * but with all dynamically-allocated buffers duplicated in new buffers.
+        */
+       public Option_TxidZ clone() {
+               long ret = bindings.COption_TxidZ_clone(this.ptr);
+               GC.KeepAlive(this);
+               if (ret >= 0 && ret <= 4096) { return null; }
+               org.ldk.structs.Option_TxidZ ret_hu_conv = org.ldk.structs.Option_TxidZ.constr_from_ptr(ret);
+               if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.AddLast(this); };
+               return ret_hu_conv;
+       }
+
+}
+} } }