Update auto-generated bindings
[ldk-java] / src / main / java / org / ldk / structs / RouteHint.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
9 /**
10  * A channel descriptor which provides a last-hop route to get_route
11  */
12 @SuppressWarnings("unchecked") // We correctly assign various generic arrays
13 public class RouteHint extends CommonBase {
14         RouteHint(Object _dummy, long ptr) { super(ptr); }
15         @Override @SuppressWarnings("deprecation")
16         protected void finalize() throws Throwable {
17                 super.finalize();
18                 if (ptr != 0) { bindings.RouteHint_free(ptr); }
19         }
20
21         /**
22          * The node_id of the non-target end of the route
23          */
24         public byte[] get_src_node_id() {
25                 byte[] ret = bindings.RouteHint_get_src_node_id(this.ptr);
26                 return ret;
27         }
28
29         /**
30          * The node_id of the non-target end of the route
31          */
32         public void set_src_node_id(byte[] val) {
33                 bindings.RouteHint_set_src_node_id(this.ptr, val);
34         }
35
36         /**
37          * The short_channel_id of this channel
38          */
39         public long get_short_channel_id() {
40                 long ret = bindings.RouteHint_get_short_channel_id(this.ptr);
41                 return ret;
42         }
43
44         /**
45          * The short_channel_id of this channel
46          */
47         public void set_short_channel_id(long val) {
48                 bindings.RouteHint_set_short_channel_id(this.ptr, val);
49         }
50
51         /**
52          * The fees which must be paid to use this channel
53          */
54         public RoutingFees get_fees() {
55                 long ret = bindings.RouteHint_get_fees(this.ptr);
56                 RoutingFees ret_hu_conv = new RoutingFees(null, ret);
57                 ret_hu_conv.ptrs_to.add(this);
58                 return ret_hu_conv;
59         }
60
61         /**
62          * The fees which must be paid to use this channel
63          */
64         public void set_fees(RoutingFees val) {
65                 bindings.RouteHint_set_fees(this.ptr, val == null ? 0 : val.ptr & ~1);
66                 this.ptrs_to.add(val);
67         }
68
69         /**
70          * The difference in CLTV values between this node and the next node.
71          */
72         public short get_cltv_expiry_delta() {
73                 short ret = bindings.RouteHint_get_cltv_expiry_delta(this.ptr);
74                 return ret;
75         }
76
77         /**
78          * The difference in CLTV values between this node and the next node.
79          */
80         public void set_cltv_expiry_delta(short val) {
81                 bindings.RouteHint_set_cltv_expiry_delta(this.ptr, val);
82         }
83
84         /**
85          * The minimum value, in msat, which must be relayed to the next hop.
86          */
87         public Option_u64Z get_htlc_minimum_msat() {
88                 long ret = bindings.RouteHint_get_htlc_minimum_msat(this.ptr);
89                 Option_u64Z ret_hu_conv = Option_u64Z.constr_from_ptr(ret);
90                 ret_hu_conv.ptrs_to.add(this);
91                 return ret_hu_conv;
92         }
93
94         /**
95          * The minimum value, in msat, which must be relayed to the next hop.
96          */
97         public void set_htlc_minimum_msat(Option_u64Z val) {
98                 bindings.RouteHint_set_htlc_minimum_msat(this.ptr, val.ptr);
99         }
100
101         /**
102          * The maximum value in msat available for routing with a single HTLC.
103          */
104         public Option_u64Z get_htlc_maximum_msat() {
105                 long ret = bindings.RouteHint_get_htlc_maximum_msat(this.ptr);
106                 Option_u64Z ret_hu_conv = Option_u64Z.constr_from_ptr(ret);
107                 ret_hu_conv.ptrs_to.add(this);
108                 return ret_hu_conv;
109         }
110
111         /**
112          * The maximum value in msat available for routing with a single HTLC.
113          */
114         public void set_htlc_maximum_msat(Option_u64Z val) {
115                 bindings.RouteHint_set_htlc_maximum_msat(this.ptr, val.ptr);
116         }
117
118         /**
119          * Constructs a new RouteHint given each field
120          */
121         public static RouteHint constructor_new(byte[] src_node_id_arg, long short_channel_id_arg, RoutingFees fees_arg, short cltv_expiry_delta_arg, Option_u64Z htlc_minimum_msat_arg, Option_u64Z htlc_maximum_msat_arg) {
122                 long ret = bindings.RouteHint_new(src_node_id_arg, short_channel_id_arg, fees_arg == null ? 0 : fees_arg.ptr & ~1, cltv_expiry_delta_arg, htlc_minimum_msat_arg.ptr, htlc_maximum_msat_arg.ptr);
123                 RouteHint ret_hu_conv = new RouteHint(null, ret);
124                 ret_hu_conv.ptrs_to.add(ret_hu_conv);
125                 ret_hu_conv.ptrs_to.add(fees_arg);
126                 return ret_hu_conv;
127         }
128
129         /**
130          * Creates a copy of the RouteHint
131          */
132         public RouteHint clone() {
133                 long ret = bindings.RouteHint_clone(this.ptr);
134                 RouteHint ret_hu_conv = new RouteHint(null, ret);
135                 ret_hu_conv.ptrs_to.add(this);
136                 return ret_hu_conv;
137         }
138
139 }