Bindings updates
[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 RoutingFees clone() {
22                 number ret = bindings.RoutingFees_clone(this.ptr);
23                 const ret_hu_conv: RoutingFees = new RoutingFees(null, ret);
24                 return ret_hu_conv;
25         }
26
27         public number get_base_msat() {
28                 number ret = bindings.RoutingFees_get_base_msat(this.ptr);
29                 return ret;
30         }
31
32         public void set_base_msat(number val) {
33                 bindings.RoutingFees_set_base_msat(this.ptr, val);
34         }
35
36         public number get_proportional_millionths() {
37                 number ret = bindings.RoutingFees_get_proportional_millionths(this.ptr);
38                 return ret;
39         }
40
41         public void set_proportional_millionths(number val) {
42                 bindings.RoutingFees_set_proportional_millionths(this.ptr, val);
43         }
44
45         public static RoutingFees constructor_new(number base_msat_arg, number proportional_millionths_arg) {
46                 number ret = bindings.RoutingFees_new(base_msat_arg, proportional_millionths_arg);
47                 const ret_hu_conv: RoutingFees = new RoutingFees(null, ret);
48                 return ret_hu_conv;
49         }
50
51         public static Result_RoutingFeesDecodeErrorZ constructor_read(Uint8Array ser) {
52                 number ret = bindings.RoutingFees_read(ser);
53                 Result_RoutingFeesDecodeErrorZ ret_hu_conv = Result_RoutingFeesDecodeErrorZ.constr_from_ptr(ret);
54                 return ret_hu_conv;
55         }
56
57         public Uint8Array write() {
58                 Uint8Array ret = bindings.RoutingFees_write(this.ptr);
59                 return ret;
60         }
61
62 }