Update auto-generated bindings
[ldk-java] / src / main / java / org / ldk / structs / UpdateAddHTLC.java
index 7e33edf0a6c90251affea97b6fa9e66f5b055723..bbb40bf8e3b2601536463975ee07a5ad77b5abd5 100644 (file)
@@ -5,76 +5,118 @@ import org.ldk.enums.*;
 import org.ldk.util.*;
 import java.util.Arrays;
 
+
+/**
+ * An update_add_htlc message to be sent or received from a peer
+ */
 @SuppressWarnings("unchecked") // We correctly assign various generic arrays
 public class UpdateAddHTLC extends CommonBase {
        UpdateAddHTLC(Object _dummy, long ptr) { super(ptr); }
        @Override @SuppressWarnings("deprecation")
        protected void finalize() throws Throwable {
                super.finalize();
-               bindings.UpdateAddHTLC_free(ptr);
-       }
-
-       public static UpdateAddHTLC constructor_clone(UpdateAddHTLC orig) {
-               long ret = bindings.UpdateAddHTLC_clone(orig == null ? 0 : orig.ptr & ~1);
-               UpdateAddHTLC ret_hu_conv = new UpdateAddHTLC(null, ret);
-               ret_hu_conv.ptrs_to.add(orig);
-               return ret_hu_conv;
+               if (ptr != 0) { bindings.UpdateAddHTLC_free(ptr); }
        }
 
+       /**
+        * The channel ID
+        */
        public byte[] get_channel_id() {
                byte[] ret = bindings.UpdateAddHTLC_get_channel_id(this.ptr);
                return ret;
        }
 
+       /**
+        * The channel ID
+        */
        public void set_channel_id(byte[] val) {
                bindings.UpdateAddHTLC_set_channel_id(this.ptr, val);
        }
 
+       /**
+        * The HTLC ID
+        */
        public long get_htlc_id() {
                long ret = bindings.UpdateAddHTLC_get_htlc_id(this.ptr);
                return ret;
        }
 
+       /**
+        * The HTLC ID
+        */
        public void set_htlc_id(long val) {
                bindings.UpdateAddHTLC_set_htlc_id(this.ptr, val);
        }
 
+       /**
+        * The HTLC value in milli-satoshi
+        */
        public long get_amount_msat() {
                long ret = bindings.UpdateAddHTLC_get_amount_msat(this.ptr);
                return ret;
        }
 
+       /**
+        * The HTLC value in milli-satoshi
+        */
        public void set_amount_msat(long val) {
                bindings.UpdateAddHTLC_set_amount_msat(this.ptr, val);
        }
 
+       /**
+        * The payment hash, the pre-image of which controls HTLC redemption
+        */
        public byte[] get_payment_hash() {
                byte[] ret = bindings.UpdateAddHTLC_get_payment_hash(this.ptr);
                return ret;
        }
 
+       /**
+        * The payment hash, the pre-image of which controls HTLC redemption
+        */
        public void set_payment_hash(byte[] val) {
                bindings.UpdateAddHTLC_set_payment_hash(this.ptr, val);
        }
 
+       /**
+        * The expiry height of the HTLC
+        */
        public int get_cltv_expiry() {
                int ret = bindings.UpdateAddHTLC_get_cltv_expiry(this.ptr);
                return ret;
        }
 
+       /**
+        * The expiry height of the HTLC
+        */
        public void set_cltv_expiry(int val) {
                bindings.UpdateAddHTLC_set_cltv_expiry(this.ptr, val);
        }
 
-       public byte[] write(UpdateAddHTLC obj) {
-               byte[] ret = bindings.UpdateAddHTLC_write(obj == null ? 0 : obj.ptr & ~1);
-               this.ptrs_to.add(obj);
+       /**
+        * Creates a copy of the UpdateAddHTLC
+        */
+       public UpdateAddHTLC clone() {
+               long ret = bindings.UpdateAddHTLC_clone(this.ptr);
+               UpdateAddHTLC ret_hu_conv = new UpdateAddHTLC(null, ret);
+               ret_hu_conv.ptrs_to.add(this);
+               return ret_hu_conv;
+       }
+
+       /**
+        * Serialize the UpdateAddHTLC object into a byte array which can be read by UpdateAddHTLC_read
+        */
+       public byte[] write() {
+               byte[] ret = bindings.UpdateAddHTLC_write(this.ptr);
                return ret;
        }
 
-       public static UpdateAddHTLC constructor_read(byte[] ser) {
+       /**
+        * Read a UpdateAddHTLC from a byte array, created by UpdateAddHTLC_write
+        */
+       public static Result_UpdateAddHTLCDecodeErrorZ read(byte[] ser) {
                long ret = bindings.UpdateAddHTLC_read(ser);
-               UpdateAddHTLC ret_hu_conv = new UpdateAddHTLC(null, ret);
+               Result_UpdateAddHTLCDecodeErrorZ ret_hu_conv = Result_UpdateAddHTLCDecodeErrorZ.constr_from_ptr(ret);
                return ret_hu_conv;
        }