Bindings updates
[ldk-java] / ts / structs / Result_ReplyShortChannelIdsEndDecodeErrorZ.ts
1
2 import CommonBase from './CommonBase';
3 import * as bindings from '../bindings' // TODO: figure out location
4
5 public class Result_ReplyShortChannelIdsEndDecodeErrorZ extends CommonBase {
6         private Result_ReplyShortChannelIdsEndDecodeErrorZ(Object _dummy, long ptr) { super(ptr); }
7         protected void finalize() throws Throwable {
8                 if (ptr != 0) { bindings.CResult_ReplyShortChannelIdsEndDecodeErrorZ_free(ptr); } super.finalize();
9         }
10
11         static Result_ReplyShortChannelIdsEndDecodeErrorZ constr_from_ptr(long ptr) {
12                 if (bindings.LDKCResult_ReplyShortChannelIdsEndDecodeErrorZ_result_ok(ptr)) {
13                         return new Result_ReplyShortChannelIdsEndDecodeErrorZ_OK(null, ptr);
14                 } else {
15                         return new Result_ReplyShortChannelIdsEndDecodeErrorZ_Err(null, ptr);
16                 }
17         }
18         public static final class Result_ReplyShortChannelIdsEndDecodeErrorZ_OK extends Result_ReplyShortChannelIdsEndDecodeErrorZ {
19                 public final ReplyShortChannelIdsEnd res;
20                 private Result_ReplyShortChannelIdsEndDecodeErrorZ_OK(Object _dummy, long ptr) {
21                         super(_dummy, ptr);
22                         number res = bindings.LDKCResult_ReplyShortChannelIdsEndDecodeErrorZ_get_ok(ptr);
23                         const res_hu_conv: ReplyShortChannelIdsEnd = new ReplyShortChannelIdsEnd(null, res);
24                         this.res = res_hu_conv;
25                 }
26                 public Result_ReplyShortChannelIdsEndDecodeErrorZ_OK(ReplyShortChannelIdsEnd res) {
27                         this(null, bindings.CResult_ReplyShortChannelIdsEndDecodeErrorZ_ok(res == null ? 0 : res.ptr & ~1));
28                         this.ptrs_to.add(res);
29                 }
30         }
31
32         public static final class Result_ReplyShortChannelIdsEndDecodeErrorZ_Err extends Result_ReplyShortChannelIdsEndDecodeErrorZ {
33                 public final DecodeError err;
34                 private Result_ReplyShortChannelIdsEndDecodeErrorZ_Err(Object _dummy, long ptr) {
35                         super(_dummy, ptr);
36                         number err = bindings.LDKCResult_ReplyShortChannelIdsEndDecodeErrorZ_get_err(ptr);
37                         const err_hu_conv: DecodeError = new DecodeError(null, err);
38                         this.err = err_hu_conv;
39                 }
40                 public Result_ReplyShortChannelIdsEndDecodeErrorZ_Err(DecodeError err) {
41                         this(null, bindings.CResult_ReplyShortChannelIdsEndDecodeErrorZ_err(err == null ? 0 : err.ptr & ~1));
42                         this.ptrs_to.add(err);
43                 }
44         }
45 }