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