Update auto-generated bindings with new upstream.
[ldk-java] / ts / structs / NodeInfo.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 NodeInfo 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.NodeInfo_free(this.ptr);
19                     }
20                 }
21         public void set_channels(number[] val) {
22                 bindings.NodeInfo_set_channels(this.ptr, val);
23         }
24
25         public RoutingFees get_lowest_inbound_channel_fees() {
26                 number ret = bindings.NodeInfo_get_lowest_inbound_channel_fees(this.ptr);
27                 const ret_hu_conv: RoutingFees = new RoutingFees(null, ret);
28                 ret_hu_conv.ptrs_to.add(this);
29                 return ret_hu_conv;
30         }
31
32         public void set_lowest_inbound_channel_fees(RoutingFees val) {
33                 bindings.NodeInfo_set_lowest_inbound_channel_fees(this.ptr, val == null ? 0 : val.ptr & ~1);
34                 this.ptrs_to.add(val);
35         }
36
37         public NodeAnnouncementInfo get_announcement_info() {
38                 number ret = bindings.NodeInfo_get_announcement_info(this.ptr);
39                 const ret_hu_conv: NodeAnnouncementInfo = new NodeAnnouncementInfo(null, ret);
40                 ret_hu_conv.ptrs_to.add(this);
41                 return ret_hu_conv;
42         }
43
44         public void set_announcement_info(NodeAnnouncementInfo val) {
45                 bindings.NodeInfo_set_announcement_info(this.ptr, val == null ? 0 : val.ptr & ~1);
46                 this.ptrs_to.add(val);
47         }
48
49         public static NodeInfo constructor_new(number[] channels_arg, RoutingFees lowest_inbound_channel_fees_arg, NodeAnnouncementInfo announcement_info_arg) {
50                 number ret = bindings.NodeInfo_new(channels_arg, lowest_inbound_channel_fees_arg == null ? 0 : lowest_inbound_channel_fees_arg.ptr & ~1, announcement_info_arg == null ? 0 : announcement_info_arg.ptr & ~1);
51                 const ret_hu_conv: NodeInfo = new NodeInfo(null, ret);
52                 ret_hu_conv.ptrs_to.add(ret_hu_conv);
53                 ret_hu_conv.ptrs_to.add(lowest_inbound_channel_fees_arg);
54                 ret_hu_conv.ptrs_to.add(announcement_info_arg);
55                 return ret_hu_conv;
56         }
57
58         public NodeInfo clone() {
59                 number ret = bindings.NodeInfo_clone(this.ptr);
60                 const ret_hu_conv: NodeInfo = new NodeInfo(null, ret);
61                 ret_hu_conv.ptrs_to.add(this);
62                 return ret_hu_conv;
63         }
64
65         public Uint8Array write() {
66                 Uint8Array ret = bindings.NodeInfo_write(this.ptr);
67                 return ret;
68         }
69
70         public static Result_NodeInfoDecodeErrorZ constructor_read(Uint8Array ser) {
71                 number ret = bindings.NodeInfo_read(ser);
72                 Result_NodeInfoDecodeErrorZ ret_hu_conv = Result_NodeInfoDecodeErrorZ.constr_from_ptr(ret);
73                 return ret_hu_conv;
74         }
75
76 }