Bindings updates
[ldk-java] / ts / structs / ReplyShortChannelIdsEnd.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 ReplyShortChannelIdsEnd 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.ReplyShortChannelIdsEnd_free(this.ptr);
19                     }
20                 }
21         public ReplyShortChannelIdsEnd clone() {
22                 number ret = bindings.ReplyShortChannelIdsEnd_clone(this.ptr);
23                 const ret_hu_conv: ReplyShortChannelIdsEnd = new ReplyShortChannelIdsEnd(null, ret);
24                 return ret_hu_conv;
25         }
26
27         public Uint8Array get_chain_hash() {
28                 Uint8Array ret = bindings.ReplyShortChannelIdsEnd_get_chain_hash(this.ptr);
29                 return ret;
30         }
31
32         public void set_chain_hash(Uint8Array val) {
33                 bindings.ReplyShortChannelIdsEnd_set_chain_hash(this.ptr, val);
34         }
35
36         public boolean get_full_information() {
37                 boolean ret = bindings.ReplyShortChannelIdsEnd_get_full_information(this.ptr);
38                 return ret;
39         }
40
41         public void set_full_information(boolean val) {
42                 bindings.ReplyShortChannelIdsEnd_set_full_information(this.ptr, val);
43         }
44
45         public static ReplyShortChannelIdsEnd constructor_new(Uint8Array chain_hash_arg, boolean full_information_arg) {
46                 number ret = bindings.ReplyShortChannelIdsEnd_new(chain_hash_arg, full_information_arg);
47                 const ret_hu_conv: ReplyShortChannelIdsEnd = new ReplyShortChannelIdsEnd(null, ret);
48                 return ret_hu_conv;
49         }
50
51         public static Result_ReplyShortChannelIdsEndDecodeErrorZ constructor_read(Uint8Array ser) {
52                 number ret = bindings.ReplyShortChannelIdsEnd_read(ser);
53                 Result_ReplyShortChannelIdsEndDecodeErrorZ ret_hu_conv = Result_ReplyShortChannelIdsEndDecodeErrorZ.constr_from_ptr(ret);
54                 return ret_hu_conv;
55         }
56
57         public Uint8Array write() {
58                 Uint8Array ret = bindings.ReplyShortChannelIdsEnd_write(this.ptr);
59                 return ret;
60         }
61
62 }