3 import CommonBase from './CommonBase';
4 import * as bindings from '../bindings' // TODO: figure out location
8 export default class RoutingFees extends CommonBase {
9 constructor(_dummy: object, ptr: number) {
14 protected finalize() {
18 bindings.RoutingFees_free(this.ptr);
21 public number get_base_msat() {
22 number ret = bindings.RoutingFees_get_base_msat(this.ptr);
26 public void set_base_msat(number val) {
27 bindings.RoutingFees_set_base_msat(this.ptr, val);
30 public number get_proportional_millionths() {
31 number ret = bindings.RoutingFees_get_proportional_millionths(this.ptr);
35 public void set_proportional_millionths(number val) {
36 bindings.RoutingFees_set_proportional_millionths(this.ptr, val);
39 public static RoutingFees constructor_new(number base_msat_arg, number proportional_millionths_arg) {
40 number ret = bindings.RoutingFees_new(base_msat_arg, proportional_millionths_arg);
41 const ret_hu_conv: RoutingFees = new RoutingFees(null, ret);
42 ret_hu_conv.ptrs_to.add(ret_hu_conv);
46 public boolean eq(RoutingFees b) {
47 boolean ret = bindings.RoutingFees_eq(this.ptr, b == null ? 0 : b.ptr & ~1);
52 public RoutingFees clone() {
53 number ret = bindings.RoutingFees_clone(this.ptr);
54 const ret_hu_conv: RoutingFees = new RoutingFees(null, ret);
55 ret_hu_conv.ptrs_to.add(this);
59 public number hash() {
60 number ret = bindings.RoutingFees_hash(this.ptr);
64 public Uint8Array write() {
65 Uint8Array ret = bindings.RoutingFees_write(this.ptr);
69 public static Result_RoutingFeesDecodeErrorZ constructor_read(Uint8Array ser) {
70 number ret = bindings.RoutingFees_read(ser);
71 Result_RoutingFeesDecodeErrorZ ret_hu_conv = Result_RoutingFeesDecodeErrorZ.constr_from_ptr(ret);