1 package org.ldk.structs;
3 import org.ldk.impl.bindings;
4 import org.ldk.enums.*;
6 import java.util.Arrays;
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 {
14 if (ptr != 0) { bindings.UpdateFailHTLC_free(ptr); }
17 public static UpdateFailHTLC constructor_clone(UpdateFailHTLC orig) {
18 long ret = bindings.UpdateFailHTLC_clone(orig == null ? 0 : orig.ptr & ~1);
19 UpdateFailHTLC ret_hu_conv = new UpdateFailHTLC(null, ret);
20 ret_hu_conv.ptrs_to.add(orig);
24 public byte[] get_channel_id() {
25 byte[] ret = bindings.UpdateFailHTLC_get_channel_id(this.ptr);
29 public void set_channel_id(byte[] val) {
30 bindings.UpdateFailHTLC_set_channel_id(this.ptr, val);
33 public long get_htlc_id() {
34 long ret = bindings.UpdateFailHTLC_get_htlc_id(this.ptr);
38 public void set_htlc_id(long val) {
39 bindings.UpdateFailHTLC_set_htlc_id(this.ptr, val);
42 public byte[] write(UpdateFailHTLC obj) {
43 byte[] ret = bindings.UpdateFailHTLC_write(obj == null ? 0 : obj.ptr & ~1);
44 this.ptrs_to.add(obj);
48 public static UpdateFailHTLC constructor_read(byte[] ser) {
49 long ret = bindings.UpdateFailHTLC_read(ser);
50 UpdateFailHTLC ret_hu_conv = new UpdateFailHTLC(null, ret);