[C#] Update auto-generated C# bindings
[ldk-java] / c_sharp / src / org / ldk / structs / Option_CVec_ThirtyTwoBytesZZ.cs
diff --git a/c_sharp/src/org/ldk/structs/Option_CVec_ThirtyTwoBytesZZ.cs b/c_sharp/src/org/ldk/structs/Option_CVec_ThirtyTwoBytesZZ.cs
new file mode 100644 (file)
index 0000000..b078a66
--- /dev/null
@@ -0,0 +1,91 @@
+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::derived::CVec_ThirtyTwoBytesZ or not
+ */
+public class Option_CVec_ThirtyTwoBytesZZ : CommonBase {
+       protected Option_CVec_ThirtyTwoBytesZZ(object _dummy, long ptr) : base(ptr) { }
+       ~Option_CVec_ThirtyTwoBytesZZ() {
+               if (ptr != 0) { bindings.COption_CVec_ThirtyTwoBytesZZ_free(ptr); }
+       }
+
+       internal static Option_CVec_ThirtyTwoBytesZZ constr_from_ptr(long ptr) {
+               long raw_ty = bindings.LDKCOption_CVec_ThirtyTwoBytesZZ_ty_from_ptr(ptr);
+               switch (raw_ty) {
+                       case 0: return new Option_CVec_ThirtyTwoBytesZZ_Some(ptr);
+                       case 1: return new Option_CVec_ThirtyTwoBytesZZ_None(ptr);
+                       default:
+                               throw new ArgumentException("Impossible enum variant");
+               }
+       }
+
+       /** A Option_CVec_ThirtyTwoBytesZZ of type Some */
+       public class Option_CVec_ThirtyTwoBytesZZ_Some : Option_CVec_ThirtyTwoBytesZZ {
+               public byte[][] some;
+               internal Option_CVec_ThirtyTwoBytesZZ_Some(long ptr) : base(null, ptr) {
+                       long some = bindings.LDKCOption_CVec_ThirtyTwoBytesZZ_Some_get_some(ptr);
+                       int some_conv_8_len = InternalUtils.getArrayLength(some);
+                       byte[][] some_conv_8_arr = new byte[some_conv_8_len][];
+                       for (int i = 0; i < some_conv_8_len; i++) {
+                               long some_conv_8 = InternalUtils.getU64ArrayElem(some, i);
+                               byte[] some_conv_8_conv = InternalUtils.decodeUint8Array(some_conv_8);
+                               some_conv_8_arr[i] = some_conv_8_conv;
+                       }
+                       bindings.free_buffer(some);
+                       this.some = some_conv_8_arr;
+               }
+       }
+       /** A Option_CVec_ThirtyTwoBytesZZ of type None */
+       public class Option_CVec_ThirtyTwoBytesZZ_None : Option_CVec_ThirtyTwoBytesZZ {
+               internal Option_CVec_ThirtyTwoBytesZZ_None(long ptr) : base(null, ptr) {
+               }
+       }
+       /**
+        * Constructs a new COption_CVec_ThirtyTwoBytesZZ containing a crate::c_types::derived::CVec_ThirtyTwoBytesZ
+        */
+       public static Option_CVec_ThirtyTwoBytesZZ some(byte[][] o) {
+               long ret = bindings.COption_CVec_ThirtyTwoBytesZZ_some(InternalUtils.encodeUint64Array(InternalUtils.mapArray(o, o_conv_8 => InternalUtils.encodeUint8Array(InternalUtils.check_arr_len(o_conv_8, 32)))));
+               GC.KeepAlive(o);
+               if (ret >= 0 && ret <= 4096) { return null; }
+               org.ldk.structs.Option_CVec_ThirtyTwoBytesZZ ret_hu_conv = org.ldk.structs.Option_CVec_ThirtyTwoBytesZZ.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_CVec_ThirtyTwoBytesZZ containing nothing
+        */
+       public static Option_CVec_ThirtyTwoBytesZZ none() {
+               long ret = bindings.COption_CVec_ThirtyTwoBytesZZ_none();
+               if (ret >= 0 && ret <= 4096) { return null; }
+               org.ldk.structs.Option_CVec_ThirtyTwoBytesZZ ret_hu_conv = org.ldk.structs.Option_CVec_ThirtyTwoBytesZZ.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_CVec_ThirtyTwoBytesZZ_clone_ptr(this.ptr);
+               GC.KeepAlive(this);
+               return ret;
+       }
+
+       /**
+        * Creates a new COption_CVec_ThirtyTwoBytesZZ which has the same data as `orig`
+        * but with all dynamically-allocated buffers duplicated in new buffers.
+        */
+       public Option_CVec_ThirtyTwoBytesZZ clone() {
+               long ret = bindings.COption_CVec_ThirtyTwoBytesZZ_clone(this.ptr);
+               GC.KeepAlive(this);
+               if (ret >= 0 && ret <= 4096) { return null; }
+               org.ldk.structs.Option_CVec_ThirtyTwoBytesZZ ret_hu_conv = org.ldk.structs.Option_CVec_ThirtyTwoBytesZZ.constr_from_ptr(ret);
+               if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.AddLast(this); };
+               return ret_hu_conv;
+       }
+
+}
+} } }