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