Bindings updates
[ldk-java] / ts / structs / UpdateFee.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 UpdateFee 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.UpdateFee_free(this.ptr);
19                     }
20                 }
21         public UpdateFee clone() {
22                 number ret = bindings.UpdateFee_clone(this.ptr);
23                 const ret_hu_conv: UpdateFee = new UpdateFee(null, ret);
24                 ret_hu_conv.ptrs_to.add(this);
25                 return ret_hu_conv;
26         }
27
28         public Uint8Array get_channel_id() {
29                 Uint8Array ret = bindings.UpdateFee_get_channel_id(this.ptr);
30                 return ret;
31         }
32
33         public void set_channel_id(Uint8Array val) {
34                 bindings.UpdateFee_set_channel_id(this.ptr, val);
35         }
36
37         public number get_feerate_per_kw() {
38                 number ret = bindings.UpdateFee_get_feerate_per_kw(this.ptr);
39                 return ret;
40         }
41
42         public void set_feerate_per_kw(number val) {
43                 bindings.UpdateFee_set_feerate_per_kw(this.ptr, val);
44         }
45
46         public static UpdateFee constructor_new(Uint8Array channel_id_arg, number feerate_per_kw_arg) {
47                 number ret = bindings.UpdateFee_new(channel_id_arg, feerate_per_kw_arg);
48                 const ret_hu_conv: UpdateFee = new UpdateFee(null, ret);
49                 ret_hu_conv.ptrs_to.add(ret_hu_conv);
50                 return ret_hu_conv;
51         }
52
53         public Uint8Array write() {
54                 Uint8Array ret = bindings.UpdateFee_write(this.ptr);
55                 return ret;
56         }
57
58         public static UpdateFee constructor_read(Uint8Array ser) {
59                 number ret = bindings.UpdateFee_read(ser);
60                 const ret_hu_conv: UpdateFee = new UpdateFee(null, ret);
61                 ret_hu_conv.ptrs_to.add(ret_hu_conv);
62                 return ret_hu_conv;
63         }
64
65 }