Bindings updates
[ldk-java] / ts / structs / QueryShortChannelIds.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 QueryShortChannelIds 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.QueryShortChannelIds_free(this.ptr);
19                     }
20                 }
21         public QueryShortChannelIds clone() {
22                 number ret = bindings.QueryShortChannelIds_clone(this.ptr);
23                 const ret_hu_conv: QueryShortChannelIds = new QueryShortChannelIds(null, ret);
24                 return ret_hu_conv;
25         }
26
27         public Uint8Array get_chain_hash() {
28                 Uint8Array ret = bindings.QueryShortChannelIds_get_chain_hash(this.ptr);
29                 return ret;
30         }
31
32         public void set_chain_hash(Uint8Array val) {
33                 bindings.QueryShortChannelIds_set_chain_hash(this.ptr, val);
34         }
35
36         public void set_short_channel_ids(number[] val) {
37                 bindings.QueryShortChannelIds_set_short_channel_ids(this.ptr, val);
38         }
39
40         public static QueryShortChannelIds constructor_new(Uint8Array chain_hash_arg, number[] short_channel_ids_arg) {
41                 number ret = bindings.QueryShortChannelIds_new(chain_hash_arg, short_channel_ids_arg);
42                 const ret_hu_conv: QueryShortChannelIds = new QueryShortChannelIds(null, ret);
43                 return ret_hu_conv;
44         }
45
46         public static Result_QueryShortChannelIdsDecodeErrorZ constructor_read(Uint8Array ser) {
47                 number ret = bindings.QueryShortChannelIds_read(ser);
48                 Result_QueryShortChannelIdsDecodeErrorZ ret_hu_conv = Result_QueryShortChannelIdsDecodeErrorZ.constr_from_ptr(ret);
49                 return ret_hu_conv;
50         }
51
52         public Uint8Array write() {
53                 Uint8Array ret = bindings.QueryShortChannelIds_write(this.ptr);
54                 return ret;
55         }
56
57 }