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 UpdateAddHTLC extends CommonBase {
10 UpdateAddHTLC(Object _dummy, long ptr) { super(ptr); }
11 @Override @SuppressWarnings("deprecation")
12 protected void finalize() throws Throwable {
14 if (ptr != 0) { bindings.UpdateAddHTLC_free(ptr); }
17 public static UpdateAddHTLC constructor_clone(UpdateAddHTLC orig) {
18 long ret = bindings.UpdateAddHTLC_clone(orig == null ? 0 : orig.ptr & ~1);
19 UpdateAddHTLC ret_hu_conv = new UpdateAddHTLC(null, ret);
20 ret_hu_conv.ptrs_to.add(orig);
24 public byte[] get_channel_id() {
25 byte[] ret = bindings.UpdateAddHTLC_get_channel_id(this.ptr);
29 public void set_channel_id(byte[] val) {
30 bindings.UpdateAddHTLC_set_channel_id(this.ptr, val);
33 public long get_htlc_id() {
34 long ret = bindings.UpdateAddHTLC_get_htlc_id(this.ptr);
38 public void set_htlc_id(long val) {
39 bindings.UpdateAddHTLC_set_htlc_id(this.ptr, val);
42 public long get_amount_msat() {
43 long ret = bindings.UpdateAddHTLC_get_amount_msat(this.ptr);
47 public void set_amount_msat(long val) {
48 bindings.UpdateAddHTLC_set_amount_msat(this.ptr, val);
51 public byte[] get_payment_hash() {
52 byte[] ret = bindings.UpdateAddHTLC_get_payment_hash(this.ptr);
56 public void set_payment_hash(byte[] val) {
57 bindings.UpdateAddHTLC_set_payment_hash(this.ptr, val);
60 public int get_cltv_expiry() {
61 int ret = bindings.UpdateAddHTLC_get_cltv_expiry(this.ptr);
65 public void set_cltv_expiry(int val) {
66 bindings.UpdateAddHTLC_set_cltv_expiry(this.ptr, val);
69 public byte[] write(UpdateAddHTLC obj) {
70 byte[] ret = bindings.UpdateAddHTLC_write(obj == null ? 0 : obj.ptr & ~1);
71 this.ptrs_to.add(obj);
75 public static UpdateAddHTLC constructor_read(byte[] ser) {
76 long ret = bindings.UpdateAddHTLC_read(ser);
77 UpdateAddHTLC ret_hu_conv = new UpdateAddHTLC(null, ret);