2 import CommonBase from './CommonBase';
3 import * as bindings from '../bindings' // TODO: figure out location
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();
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);
15 return new Result_PaymentSecretAPIErrorZ_Err(null, ptr);
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) {
22 this.res = bindings.LDKCResult_PaymentSecretAPIErrorZ_get_ok(ptr);
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) {
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;
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);
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);
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);