c11990a3a3bb6e776ea7531995fc634d6d55a7df
[ldk-java] / src / main / java / org / ldk / structs / RoutingFees.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 RoutingFees extends CommonBase {
10         RoutingFees(Object _dummy, long ptr) { super(ptr); }
11         @Override @SuppressWarnings("deprecation")
12         protected void finalize() throws Throwable {
13                 super.finalize();
14                 if (ptr != 0) { bindings.RoutingFees_free(ptr); }
15         }
16
17         public RoutingFees clone() {
18                 long ret = bindings.RoutingFees_clone(this.ptr);
19                 RoutingFees ret_hu_conv = new RoutingFees(null, ret);
20                 ret_hu_conv.ptrs_to.add(this);
21                 return ret_hu_conv;
22         }
23
24         public int get_base_msat() {
25                 int ret = bindings.RoutingFees_get_base_msat(this.ptr);
26                 return ret;
27         }
28
29         public void set_base_msat(int val) {
30                 bindings.RoutingFees_set_base_msat(this.ptr, val);
31         }
32
33         public int get_proportional_millionths() {
34                 int ret = bindings.RoutingFees_get_proportional_millionths(this.ptr);
35                 return ret;
36         }
37
38         public void set_proportional_millionths(int val) {
39                 bindings.RoutingFees_set_proportional_millionths(this.ptr, val);
40         }
41
42         public static RoutingFees constructor_new(int base_msat_arg, int proportional_millionths_arg) {
43                 long ret = bindings.RoutingFees_new(base_msat_arg, proportional_millionths_arg);
44                 RoutingFees ret_hu_conv = new RoutingFees(null, ret);
45                 ret_hu_conv.ptrs_to.add(ret_hu_conv);
46                 return ret_hu_conv;
47         }
48
49         public static Result_RoutingFeesDecodeErrorZ constructor_read(byte[] ser) {
50                 long ret = bindings.RoutingFees_read(ser);
51                 Result_RoutingFeesDecodeErrorZ ret_hu_conv = Result_RoutingFeesDecodeErrorZ.constr_from_ptr(ret);
52                 return ret_hu_conv;
53         }
54
55         public byte[] write() {
56                 byte[] ret = bindings.RoutingFees_write(this.ptr);
57                 return ret;
58         }
59
60 }