Update auto-generated bindings to 0.0.103
[ldk-java] / src / main / java / org / ldk / structs / UpdateFulfillHTLC.java
1 package org.ldk.structs;
2
3 import org.ldk.impl.bindings;
4 import org.ldk.enums.*;
5 import org.ldk.util.*;
6 import java.util.Arrays;
7 import javax.annotation.Nullable;
8
9
10 /**
11  * An update_fulfill_htlc message to be sent or received from a peer
12  */
13 @SuppressWarnings("unchecked") // We correctly assign various generic arrays
14 public class UpdateFulfillHTLC extends CommonBase {
15         UpdateFulfillHTLC(Object _dummy, long ptr) { super(ptr); }
16         @Override @SuppressWarnings("deprecation")
17         protected void finalize() throws Throwable {
18                 super.finalize();
19                 if (ptr != 0) { bindings.UpdateFulfillHTLC_free(ptr); }
20         }
21
22         /**
23          * The channel ID
24          */
25         public byte[] get_channel_id() {
26                 byte[] ret = bindings.UpdateFulfillHTLC_get_channel_id(this.ptr);
27                 return ret;
28         }
29
30         /**
31          * The channel ID
32          */
33         public void set_channel_id(byte[] val) {
34                 bindings.UpdateFulfillHTLC_set_channel_id(this.ptr, val);
35         }
36
37         /**
38          * The HTLC ID
39          */
40         public long get_htlc_id() {
41                 long ret = bindings.UpdateFulfillHTLC_get_htlc_id(this.ptr);
42                 return ret;
43         }
44
45         /**
46          * The HTLC ID
47          */
48         public void set_htlc_id(long val) {
49                 bindings.UpdateFulfillHTLC_set_htlc_id(this.ptr, val);
50         }
51
52         /**
53          * The pre-image of the payment hash, allowing HTLC redemption
54          */
55         public byte[] get_payment_preimage() {
56                 byte[] ret = bindings.UpdateFulfillHTLC_get_payment_preimage(this.ptr);
57                 return ret;
58         }
59
60         /**
61          * The pre-image of the payment hash, allowing HTLC redemption
62          */
63         public void set_payment_preimage(byte[] val) {
64                 bindings.UpdateFulfillHTLC_set_payment_preimage(this.ptr, val);
65         }
66
67         /**
68          * Constructs a new UpdateFulfillHTLC given each field
69          */
70         public static UpdateFulfillHTLC of(byte[] channel_id_arg, long htlc_id_arg, byte[] payment_preimage_arg) {
71                 long ret = bindings.UpdateFulfillHTLC_new(channel_id_arg, htlc_id_arg, payment_preimage_arg);
72                 if (ret >= 0 && ret <= 4096) { return null; }
73                 UpdateFulfillHTLC ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new UpdateFulfillHTLC(null, ret); }
74                 ret_hu_conv.ptrs_to.add(ret_hu_conv);
75                 return ret_hu_conv;
76         }
77
78         /**
79          * Creates a copy of the UpdateFulfillHTLC
80          */
81         public UpdateFulfillHTLC clone() {
82                 long ret = bindings.UpdateFulfillHTLC_clone(this.ptr);
83                 if (ret >= 0 && ret <= 4096) { return null; }
84                 UpdateFulfillHTLC ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new UpdateFulfillHTLC(null, ret); }
85                 ret_hu_conv.ptrs_to.add(this);
86                 return ret_hu_conv;
87         }
88
89         /**
90          * Serialize the UpdateFulfillHTLC object into a byte array which can be read by UpdateFulfillHTLC_read
91          */
92         public byte[] write() {
93                 byte[] ret = bindings.UpdateFulfillHTLC_write(this.ptr);
94                 return ret;
95         }
96
97         /**
98          * Read a UpdateFulfillHTLC from a byte array, created by UpdateFulfillHTLC_write
99          */
100         public static Result_UpdateFulfillHTLCDecodeErrorZ read(byte[] ser) {
101                 long ret = bindings.UpdateFulfillHTLC_read(ser);
102                 if (ret >= 0 && ret <= 4096) { return null; }
103                 Result_UpdateFulfillHTLCDecodeErrorZ ret_hu_conv = Result_UpdateFulfillHTLCDecodeErrorZ.constr_from_ptr(ret);
104                 return ret_hu_conv;
105         }
106
107 }