Merge pull request #2 from TheBlueMatt/main
[ldk-java] / src / main / java / org / ldk / structs / StaticPaymentOutputDescriptor.java
diff --git a/src/main/java/org/ldk/structs/StaticPaymentOutputDescriptor.java b/src/main/java/org/ldk/structs/StaticPaymentOutputDescriptor.java
new file mode 100644 (file)
index 0000000..6fd5fd7
--- /dev/null
@@ -0,0 +1,66 @@
+package org.ldk.structs;
+
+import org.ldk.impl.bindings;
+import org.ldk.enums.*;
+import org.ldk.util.*;
+import java.util.Arrays;
+
+@SuppressWarnings("unchecked") // We correctly assign various generic arrays
+public class StaticPaymentOutputDescriptor extends CommonBase {
+       StaticPaymentOutputDescriptor(Object _dummy, long ptr) { super(ptr); }
+       @Override @SuppressWarnings("deprecation")
+       protected void finalize() throws Throwable {
+               super.finalize();
+               if (ptr != 0) { bindings.StaticPaymentOutputDescriptor_free(ptr); }
+       }
+
+       public OutPoint get_outpoint() {
+               long ret = bindings.StaticPaymentOutputDescriptor_get_outpoint(this.ptr);
+               OutPoint ret_hu_conv = new OutPoint(null, ret);
+               ret_hu_conv.ptrs_to.add(this);
+               return ret_hu_conv;
+       }
+
+       public void set_outpoint(OutPoint val) {
+               bindings.StaticPaymentOutputDescriptor_set_outpoint(this.ptr, val == null ? 0 : val.ptr & ~1);
+               this.ptrs_to.add(val);
+       }
+
+       public void set_output(TxOut val) {
+               bindings.StaticPaymentOutputDescriptor_set_output(this.ptr, val.ptr);
+       }
+
+       public byte[] get_channel_keys_id() {
+               byte[] ret = bindings.StaticPaymentOutputDescriptor_get_channel_keys_id(this.ptr);
+               return ret;
+       }
+
+       public void set_channel_keys_id(byte[] val) {
+               bindings.StaticPaymentOutputDescriptor_set_channel_keys_id(this.ptr, val);
+       }
+
+       public long get_channel_value_satoshis() {
+               long ret = bindings.StaticPaymentOutputDescriptor_get_channel_value_satoshis(this.ptr);
+               return ret;
+       }
+
+       public void set_channel_value_satoshis(long val) {
+               bindings.StaticPaymentOutputDescriptor_set_channel_value_satoshis(this.ptr, val);
+       }
+
+       public static StaticPaymentOutputDescriptor constructor_new(OutPoint outpoint_arg, TxOut output_arg, byte[] channel_keys_id_arg, long channel_value_satoshis_arg) {
+               long ret = bindings.StaticPaymentOutputDescriptor_new(outpoint_arg == null ? 0 : outpoint_arg.ptr & ~1, output_arg.ptr, channel_keys_id_arg, channel_value_satoshis_arg);
+               StaticPaymentOutputDescriptor ret_hu_conv = new StaticPaymentOutputDescriptor(null, ret);
+               ret_hu_conv.ptrs_to.add(ret_hu_conv);
+               ret_hu_conv.ptrs_to.add(outpoint_arg);
+               return ret_hu_conv;
+       }
+
+       public StaticPaymentOutputDescriptor clone() {
+               long ret = bindings.StaticPaymentOutputDescriptor_clone(this.ptr);
+               StaticPaymentOutputDescriptor ret_hu_conv = new StaticPaymentOutputDescriptor(null, ret);
+               ret_hu_conv.ptrs_to.add(this);
+               return ret_hu_conv;
+       }
+
+}