966392bdc871f263ef1815938dcaba7b0b91ae8c
[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 @SuppressWarnings("unchecked") // We correctly assign various generic arrays
9 public class UpdateFulfillHTLC extends CommonBase {
10         UpdateFulfillHTLC(Object _dummy, long ptr) { super(ptr); }
11         @Override @SuppressWarnings("deprecation")
12         protected void finalize() throws Throwable {
13                 super.finalize();
14                 if (ptr != 0) { bindings.UpdateFulfillHTLC_free(ptr); }
15         }
16
17         public byte[] get_channel_id() {
18                 byte[] ret = bindings.UpdateFulfillHTLC_get_channel_id(this.ptr);
19                 return ret;
20         }
21
22         public void set_channel_id(byte[] val) {
23                 bindings.UpdateFulfillHTLC_set_channel_id(this.ptr, val);
24         }
25
26         public long get_htlc_id() {
27                 long ret = bindings.UpdateFulfillHTLC_get_htlc_id(this.ptr);
28                 return ret;
29         }
30
31         public void set_htlc_id(long val) {
32                 bindings.UpdateFulfillHTLC_set_htlc_id(this.ptr, val);
33         }
34
35         public byte[] get_payment_preimage() {
36                 byte[] ret = bindings.UpdateFulfillHTLC_get_payment_preimage(this.ptr);
37                 return ret;
38         }
39
40         public void set_payment_preimage(byte[] val) {
41                 bindings.UpdateFulfillHTLC_set_payment_preimage(this.ptr, val);
42         }
43
44         public static UpdateFulfillHTLC constructor_new(byte[] channel_id_arg, long htlc_id_arg, byte[] payment_preimage_arg) {
45                 long ret = bindings.UpdateFulfillHTLC_new(channel_id_arg, htlc_id_arg, payment_preimage_arg);
46                 UpdateFulfillHTLC ret_hu_conv = new UpdateFulfillHTLC(null, ret);
47                 ret_hu_conv.ptrs_to.add(ret_hu_conv);
48                 return ret_hu_conv;
49         }
50
51         public UpdateFulfillHTLC clone() {
52                 long ret = bindings.UpdateFulfillHTLC_clone(this.ptr);
53                 UpdateFulfillHTLC ret_hu_conv = new UpdateFulfillHTLC(null, ret);
54                 ret_hu_conv.ptrs_to.add(this);
55                 return ret_hu_conv;
56         }
57
58         public byte[] write() {
59                 byte[] ret = bindings.UpdateFulfillHTLC_write(this.ptr);
60                 return ret;
61         }
62
63         public static Result_UpdateFulfillHTLCDecodeErrorZ constructor_read(byte[] ser) {
64                 long ret = bindings.UpdateFulfillHTLC_read(ser);
65                 Result_UpdateFulfillHTLCDecodeErrorZ ret_hu_conv = Result_UpdateFulfillHTLCDecodeErrorZ.constr_from_ptr(ret);
66                 return ret_hu_conv;
67         }
68
69 }