Update auto-generated bindings
[ldk-java] / ts / structs / RoutingFees.ts
1
2             
3 import CommonBase from './CommonBase';
4 import * as bindings from '../bindings' // TODO: figure out location
5
6
7
8             export default class RoutingFees extends CommonBase {
9                 constructor(_dummy: object, ptr: number) {
10                     super(ptr);
11                 }
12
13                 
14                 protected finalize() {
15                     super.finalize();
16
17                     if (this.ptr != 0) {
18                         bindings.RoutingFees_free(this.ptr);
19                     }
20                 }
21         public number get_base_msat() {
22                 number ret = bindings.RoutingFees_get_base_msat(this.ptr);
23                 return ret;
24         }
25
26         public void set_base_msat(number val) {
27                 bindings.RoutingFees_set_base_msat(this.ptr, val);
28         }
29
30         public number get_proportional_millionths() {
31                 number ret = bindings.RoutingFees_get_proportional_millionths(this.ptr);
32                 return ret;
33         }
34
35         public void set_proportional_millionths(number val) {
36                 bindings.RoutingFees_set_proportional_millionths(this.ptr, val);
37         }
38
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);
43                 return ret_hu_conv;
44         }
45
46         public boolean eq(RoutingFees b) {
47                 boolean ret = bindings.RoutingFees_eq(this.ptr, b == null ? 0 : b.ptr & ~1);
48                 this.ptrs_to.add(b);
49                 return ret;
50         }
51
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);
56                 return ret_hu_conv;
57         }
58
59         public Uint8Array write() {
60                 Uint8Array ret = bindings.RoutingFees_write(this.ptr);
61                 return ret;
62         }
63
64         public static Result_RoutingFeesDecodeErrorZ constructor_read(Uint8Array ser) {
65                 number ret = bindings.RoutingFees_read(ser);
66                 Result_RoutingFeesDecodeErrorZ ret_hu_conv = Result_RoutingFeesDecodeErrorZ.constr_from_ptr(ret);
67                 return ret_hu_conv;
68         }
69
70 }