Update auto-generated bindings
[ldk-java] / ts / structs / Result_PaymentSecretAPIErrorZ.ts
1
2 import CommonBase from './CommonBase';
3 import * as bindings from '../bindings' // TODO: figure out location
4
5 public class Result_PaymentSecretAPIErrorZ extends CommonBase {
6         private Result_PaymentSecretAPIErrorZ(Object _dummy, long ptr) { super(ptr); }
7         protected void finalize() throws Throwable {
8                 if (ptr != 0) { bindings.CResult_PaymentSecretAPIErrorZ_free(ptr); } super.finalize();
9         }
10
11         static Result_PaymentSecretAPIErrorZ constr_from_ptr(long ptr) {
12                 if (bindings.LDKCResult_PaymentSecretAPIErrorZ_result_ok(ptr)) {
13                         return new Result_PaymentSecretAPIErrorZ_OK(null, ptr);
14                 } else {
15                         return new Result_PaymentSecretAPIErrorZ_Err(null, ptr);
16                 }
17         }
18         public static final class Result_PaymentSecretAPIErrorZ_OK extends Result_PaymentSecretAPIErrorZ {
19                 public final Uint8Array res;
20                 private Result_PaymentSecretAPIErrorZ_OK(Object _dummy, long ptr) {
21                         super(_dummy, ptr);
22                         this.res = bindings.LDKCResult_PaymentSecretAPIErrorZ_get_ok(ptr);
23                 }
24         }
25
26         public static final class Result_PaymentSecretAPIErrorZ_Err extends Result_PaymentSecretAPIErrorZ {
27                 public final APIError err;
28                 private Result_PaymentSecretAPIErrorZ_Err(Object _dummy, long ptr) {
29                         super(_dummy, ptr);
30                         number err = bindings.LDKCResult_PaymentSecretAPIErrorZ_get_err(ptr);
31                         APIError err_hu_conv = APIError.constr_from_ptr(err);
32                         err_hu_conv.ptrs_to.add(this);
33                         this.err = err_hu_conv;
34                 }
35         }
36
37         public static Result_PaymentSecretAPIErrorZ constructor__ok(Uint8Array o) {
38                 number ret = bindings.CResult_PaymentSecretAPIErrorZ_ok(o);
39                 Result_PaymentSecretAPIErrorZ ret_hu_conv = Result_PaymentSecretAPIErrorZ.constr_from_ptr(ret);
40                 return ret_hu_conv;
41         }
42
43         public static Result_PaymentSecretAPIErrorZ constructor__err(APIError e) {
44                 number ret = bindings.CResult_PaymentSecretAPIErrorZ_err(e.ptr);
45                 Result_PaymentSecretAPIErrorZ ret_hu_conv = Result_PaymentSecretAPIErrorZ.constr_from_ptr(ret);
46                 return ret_hu_conv;
47         }
48
49         public Result_PaymentSecretAPIErrorZ _clone() {
50                 number ret = bindings.CResult_PaymentSecretAPIErrorZ_clone(this.ptr);
51                 Result_PaymentSecretAPIErrorZ ret_hu_conv = Result_PaymentSecretAPIErrorZ.constr_from_ptr(ret);
52                 return ret_hu_conv;
53         }
54
55 }