355666153af51069af896d861a99b575db74b016
[ldk-java] / src / main / java / org / ldk / structs / UpdateFailHTLC.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 UpdateFailHTLC extends CommonBase {
10         UpdateFailHTLC(Object _dummy, long ptr) { super(ptr); }
11         @Override @SuppressWarnings("deprecation")
12         protected void finalize() throws Throwable {
13                 super.finalize();
14                 if (ptr != 0) { bindings.UpdateFailHTLC_free(ptr); }
15         }
16
17         public byte[] get_channel_id() {
18                 byte[] ret = bindings.UpdateFailHTLC_get_channel_id(this.ptr);
19                 return ret;
20         }
21
22         public void set_channel_id(byte[] val) {
23                 bindings.UpdateFailHTLC_set_channel_id(this.ptr, val);
24         }
25
26         public long get_htlc_id() {
27                 long ret = bindings.UpdateFailHTLC_get_htlc_id(this.ptr);
28                 return ret;
29         }
30
31         public void set_htlc_id(long val) {
32                 bindings.UpdateFailHTLC_set_htlc_id(this.ptr, val);
33         }
34
35         public UpdateFailHTLC clone() {
36                 long ret = bindings.UpdateFailHTLC_clone(this.ptr);
37                 UpdateFailHTLC ret_hu_conv = new UpdateFailHTLC(null, ret);
38                 ret_hu_conv.ptrs_to.add(this);
39                 return ret_hu_conv;
40         }
41
42         public byte[] write() {
43                 byte[] ret = bindings.UpdateFailHTLC_write(this.ptr);
44                 return ret;
45         }
46
47         public static Result_UpdateFailHTLCDecodeErrorZ constructor_read(byte[] ser) {
48                 long ret = bindings.UpdateFailHTLC_read(ser);
49                 Result_UpdateFailHTLCDecodeErrorZ ret_hu_conv = Result_UpdateFailHTLCDecodeErrorZ.constr_from_ptr(ret);
50                 return ret_hu_conv;
51         }
52
53 }