Convert slices - requires some machinery to call Release, but otherwise not bad
[ldk-java] / src / main / java / org / ldk / structs / UpdateFee.java
1 package org.ldk.structs;
2
3 import org.ldk.impl.bindings;
4 import org.ldk.enums.*;
5
6 public class UpdateFee extends CommonBase {
7         UpdateFee(Object _dummy, long ptr) { super(ptr); }
8         @Override @SuppressWarnings("deprecation")
9         protected void finalize() throws Throwable {
10                 bindings.UpdateFee_free(ptr); super.finalize();
11         }
12
13         public UpdateFee(UpdateFee orig) {
14                 super(bindings.UpdateFee_clone(orig.ptr & ~1));
15                 this.ptrs_to.add(orig);
16         }
17
18         public byte[] get_channel_id(UpdateFee this_ptr) {
19                 byte[] ret = bindings.UpdateFee_get_channel_id(this_ptr.ptr & ~1);
20                 this.ptrs_to.add(this_ptr);
21                 return ret;
22         }
23
24         public void set_channel_id(UpdateFee this_ptr, byte[] val) {
25                 bindings.UpdateFee_set_channel_id(this_ptr.ptr & ~1, val);
26                 this.ptrs_to.add(this_ptr);
27         }
28
29         public int get_feerate_per_kw(UpdateFee this_ptr) {
30                 int ret = bindings.UpdateFee_get_feerate_per_kw(this_ptr.ptr & ~1);
31                 this.ptrs_to.add(this_ptr);
32                 return ret;
33         }
34
35         public void set_feerate_per_kw(UpdateFee this_ptr, int val) {
36                 bindings.UpdateFee_set_feerate_per_kw(this_ptr.ptr & ~1, val);
37                 this.ptrs_to.add(this_ptr);
38         }
39
40         public UpdateFee(byte[] channel_id_arg, int feerate_per_kw_arg) {
41                 super(bindings.UpdateFee_new(channel_id_arg, feerate_per_kw_arg));
42         }
43
44         // Skipped UpdateFee_write
45         public UpdateFee(byte[] ser) {
46                 super(bindings.UpdateFee_read(ser));
47         }
48
49 }