Properly set CVec_u8Z to a byte[] which adds a ton more fn's
[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
6 public class RoutingFees extends CommonBase {
7         RoutingFees(Object _dummy, long ptr) { super(ptr); }
8         @Override @SuppressWarnings("deprecation")
9         protected void finalize() throws Throwable {
10                 super.finalize();
11                 bindings.RoutingFees_free(ptr);
12         }
13
14         public RoutingFees(RoutingFees orig) {
15                 super(bindings.RoutingFees_clone(orig == null ? 0 : orig.ptr & ~1));
16                 this.ptrs_to.add(orig);
17         }
18
19         public int get_base_msat(RoutingFees this_ptr) {
20                 int ret = bindings.RoutingFees_get_base_msat(this_ptr == null ? 0 : this_ptr.ptr & ~1);
21                 this.ptrs_to.add(this_ptr);
22                 return ret;
23         }
24
25         public void set_base_msat(RoutingFees this_ptr, int val) {
26                 bindings.RoutingFees_set_base_msat(this_ptr == null ? 0 : this_ptr.ptr & ~1, val);
27                 this.ptrs_to.add(this_ptr);
28         }
29
30         public int get_proportional_millionths(RoutingFees this_ptr) {
31                 int ret = bindings.RoutingFees_get_proportional_millionths(this_ptr == null ? 0 : this_ptr.ptr & ~1);
32                 this.ptrs_to.add(this_ptr);
33                 return ret;
34         }
35
36         public void set_proportional_millionths(RoutingFees this_ptr, int val) {
37                 bindings.RoutingFees_set_proportional_millionths(this_ptr == null ? 0 : this_ptr.ptr & ~1, val);
38                 this.ptrs_to.add(this_ptr);
39         }
40
41         public RoutingFees(int base_msat_arg, int proportional_millionths_arg) {
42                 super(bindings.RoutingFees_new(base_msat_arg, proportional_millionths_arg));
43         }
44
45         public RoutingFees(byte[] ser) {
46                 super(bindings.RoutingFees_read(ser));
47         }
48
49         public byte[] write(RoutingFees obj) {
50                 byte[] ret = bindings.RoutingFees_write(obj == null ? 0 : obj.ptr & ~1);
51                 this.ptrs_to.add(obj);
52                 return ret;
53         }
54
55 }