c4aa0936e2a54246620bb30f46b14271fd37e783
[ldk-java] / src / main / java / org / ldk / structs / UpdateAddHTLC.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 UpdateAddHTLC extends CommonBase {
10         UpdateAddHTLC(Object _dummy, long ptr) { super(ptr); }
11         @Override @SuppressWarnings("deprecation")
12         protected void finalize() throws Throwable {
13                 super.finalize();
14                 if (ptr != 0) { bindings.UpdateAddHTLC_free(ptr); }
15         }
16
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);
21                 return ret_hu_conv;
22         }
23
24         public byte[] get_channel_id() {
25                 byte[] ret = bindings.UpdateAddHTLC_get_channel_id(this.ptr);
26                 return ret;
27         }
28
29         public void set_channel_id(byte[] val) {
30                 bindings.UpdateAddHTLC_set_channel_id(this.ptr, val);
31         }
32
33         public long get_htlc_id() {
34                 long ret = bindings.UpdateAddHTLC_get_htlc_id(this.ptr);
35                 return ret;
36         }
37
38         public void set_htlc_id(long val) {
39                 bindings.UpdateAddHTLC_set_htlc_id(this.ptr, val);
40         }
41
42         public long get_amount_msat() {
43                 long ret = bindings.UpdateAddHTLC_get_amount_msat(this.ptr);
44                 return ret;
45         }
46
47         public void set_amount_msat(long val) {
48                 bindings.UpdateAddHTLC_set_amount_msat(this.ptr, val);
49         }
50
51         public byte[] get_payment_hash() {
52                 byte[] ret = bindings.UpdateAddHTLC_get_payment_hash(this.ptr);
53                 return ret;
54         }
55
56         public void set_payment_hash(byte[] val) {
57                 bindings.UpdateAddHTLC_set_payment_hash(this.ptr, val);
58         }
59
60         public int get_cltv_expiry() {
61                 int ret = bindings.UpdateAddHTLC_get_cltv_expiry(this.ptr);
62                 return ret;
63         }
64
65         public void set_cltv_expiry(int val) {
66                 bindings.UpdateAddHTLC_set_cltv_expiry(this.ptr, val);
67         }
68
69         public byte[] write(UpdateAddHTLC obj) {
70                 byte[] ret = bindings.UpdateAddHTLC_write(obj == null ? 0 : obj.ptr & ~1);
71                 this.ptrs_to.add(obj);
72                 return ret;
73         }
74
75         public static UpdateAddHTLC constructor_read(byte[] ser) {
76                 long ret = bindings.UpdateAddHTLC_read(ser);
77                 UpdateAddHTLC ret_hu_conv = new UpdateAddHTLC(null, ret);
78                 return ret_hu_conv;
79         }
80
81 }