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