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