903e56ecf2d4cb64b25fffad37b6cf2d64099542
[ldk-java] / ts / structs / DirectionalChannelInfo.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 DirectionalChannelInfo 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.DirectionalChannelInfo_free(this.ptr);
19                     }
20                 }
21         public number get_last_update() {
22                 number ret = bindings.DirectionalChannelInfo_get_last_update(this.ptr);
23                 return ret;
24         }
25
26         public void set_last_update(number val) {
27                 bindings.DirectionalChannelInfo_set_last_update(this.ptr, val);
28         }
29
30         public boolean get_enabled() {
31                 boolean ret = bindings.DirectionalChannelInfo_get_enabled(this.ptr);
32                 return ret;
33         }
34
35         public void set_enabled(boolean val) {
36                 bindings.DirectionalChannelInfo_set_enabled(this.ptr, val);
37         }
38
39         public number get_cltv_expiry_delta() {
40                 number ret = bindings.DirectionalChannelInfo_get_cltv_expiry_delta(this.ptr);
41                 return ret;
42         }
43
44         public void set_cltv_expiry_delta(number val) {
45                 bindings.DirectionalChannelInfo_set_cltv_expiry_delta(this.ptr, val);
46         }
47
48         public number get_htlc_minimum_msat() {
49                 number ret = bindings.DirectionalChannelInfo_get_htlc_minimum_msat(this.ptr);
50                 return ret;
51         }
52
53         public void set_htlc_minimum_msat(number val) {
54                 bindings.DirectionalChannelInfo_set_htlc_minimum_msat(this.ptr, val);
55         }
56
57         public RoutingFees get_fees() {
58                 number ret = bindings.DirectionalChannelInfo_get_fees(this.ptr);
59                 const ret_hu_conv: RoutingFees = new RoutingFees(null, ret);
60                 ret_hu_conv.ptrs_to.add(this);
61                 return ret_hu_conv;
62         }
63
64         public void set_fees(RoutingFees val) {
65                 bindings.DirectionalChannelInfo_set_fees(this.ptr, val == null ? 0 : val.ptr & ~1);
66                 this.ptrs_to.add(val);
67         }
68
69         public ChannelUpdate get_last_update_message() {
70                 number ret = bindings.DirectionalChannelInfo_get_last_update_message(this.ptr);
71                 const ret_hu_conv: ChannelUpdate = new ChannelUpdate(null, ret);
72                 ret_hu_conv.ptrs_to.add(this);
73                 return ret_hu_conv;
74         }
75
76         public void set_last_update_message(ChannelUpdate val) {
77                 bindings.DirectionalChannelInfo_set_last_update_message(this.ptr, val == null ? 0 : val.ptr & ~1);
78                 this.ptrs_to.add(val);
79         }
80
81         public DirectionalChannelInfo clone() {
82                 number ret = bindings.DirectionalChannelInfo_clone(this.ptr);
83                 const ret_hu_conv: DirectionalChannelInfo = new DirectionalChannelInfo(null, ret);
84                 ret_hu_conv.ptrs_to.add(this);
85                 return ret_hu_conv;
86         }
87
88         public Uint8Array write() {
89                 Uint8Array ret = bindings.DirectionalChannelInfo_write(this.ptr);
90                 return ret;
91         }
92
93         public static Result_DirectionalChannelInfoDecodeErrorZ constructor_read(Uint8Array ser) {
94                 number ret = bindings.DirectionalChannelInfo_read(ser);
95                 Result_DirectionalChannelInfoDecodeErrorZ ret_hu_conv = Result_DirectionalChannelInfoDecodeErrorZ.constr_from_ptr(ret);
96                 return ret_hu_conv;
97         }
98
99 }