1 package org.ldk.structs;
3 import org.ldk.impl.bindings;
4 import org.ldk.enums.*;
6 import java.util.Arrays;
8 @SuppressWarnings("unchecked") // We correctly assign various generic arrays
9 public class UpdateFee extends CommonBase {
10 UpdateFee(Object _dummy, long ptr) { super(ptr); }
11 @Override @SuppressWarnings("deprecation")
12 protected void finalize() throws Throwable {
14 if (ptr != 0) { bindings.UpdateFee_free(ptr); }
17 public static UpdateFee constructor_clone(UpdateFee orig) {
18 long ret = bindings.UpdateFee_clone(orig == null ? 0 : orig.ptr & ~1);
19 UpdateFee ret_hu_conv = new UpdateFee(null, ret);
20 ret_hu_conv.ptrs_to.add(orig);
24 public byte[] get_channel_id() {
25 byte[] ret = bindings.UpdateFee_get_channel_id(this.ptr);
29 public void set_channel_id(byte[] val) {
30 bindings.UpdateFee_set_channel_id(this.ptr, val);
33 public int get_feerate_per_kw() {
34 int ret = bindings.UpdateFee_get_feerate_per_kw(this.ptr);
38 public void set_feerate_per_kw(int val) {
39 bindings.UpdateFee_set_feerate_per_kw(this.ptr, val);
42 public static UpdateFee constructor_new(byte[] channel_id_arg, int feerate_per_kw_arg) {
43 long ret = bindings.UpdateFee_new(channel_id_arg, feerate_per_kw_arg);
44 UpdateFee ret_hu_conv = new UpdateFee(null, ret);
48 public byte[] write(UpdateFee obj) {
49 byte[] ret = bindings.UpdateFee_write(obj == null ? 0 : obj.ptr & ~1);
50 this.ptrs_to.add(obj);
54 public static UpdateFee constructor_read(byte[] ser) {
55 long ret = bindings.UpdateFee_read(ser);
56 UpdateFee ret_hu_conv = new UpdateFee(null, ret);