Update auto-generated bindings with new upstream.
[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, val);
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(chain_hash_arg, 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 ReplyShortChannelIdsEnd clone() {
47                 number ret = bindings.ReplyShortChannelIdsEnd_clone(this.ptr);
48                 const ret_hu_conv: ReplyShortChannelIdsEnd = new ReplyShortChannelIdsEnd(null, ret);
49                 ret_hu_conv.ptrs_to.add(this);
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 }