Update auto-generated bindings
[ldk-java] / ts / structs / Result_PaymentIdPaymentSendFailureZ.ts
1
2 import CommonBase from './CommonBase';
3 import * as bindings from '../bindings' // TODO: figure out location
4
5 public class Result_PaymentIdPaymentSendFailureZ extends CommonBase {
6         private Result_PaymentIdPaymentSendFailureZ(Object _dummy, long ptr) { super(ptr); }
7         protected void finalize() throws Throwable {
8                 if (ptr != 0) { bindings.CResult_PaymentIdPaymentSendFailureZ_free(ptr); } super.finalize();
9         }
10
11         static Result_PaymentIdPaymentSendFailureZ constr_from_ptr(long ptr) {
12                 if (bindings.CResult_PaymentIdPaymentSendFailureZ_is_ok(ptr)) {
13                         return new Result_PaymentIdPaymentSendFailureZ_OK(null, ptr);
14                 } else {
15                         return new Result_PaymentIdPaymentSendFailureZ_Err(null, ptr);
16                 }
17         }
18         public static final class Result_PaymentIdPaymentSendFailureZ_OK extends Result_PaymentIdPaymentSendFailureZ {
19                 public final Uint8Array res;
20                 private Result_PaymentIdPaymentSendFailureZ_OK(Object _dummy, long ptr) {
21                         super(_dummy, ptr);
22                         this.res = bindings.LDKCResult_PaymentIdPaymentSendFailureZ_get_ok(ptr);
23                 }
24         }
25
26         public static final class Result_PaymentIdPaymentSendFailureZ_Err extends Result_PaymentIdPaymentSendFailureZ {
27                 public final PaymentSendFailure err;
28                 private Result_PaymentIdPaymentSendFailureZ_Err(Object _dummy, long ptr) {
29                         super(_dummy, ptr);
30                         number err = bindings.LDKCResult_PaymentIdPaymentSendFailureZ_get_err(ptr);
31                         PaymentSendFailure err_hu_conv = PaymentSendFailure.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_PaymentIdPaymentSendFailureZ constructor_ok(Uint8Array o) {
38                 number ret = bindings.CResult_PaymentIdPaymentSendFailureZ_ok(InternalUtils.check_arr_len(o, 32));
39                 Result_PaymentIdPaymentSendFailureZ ret_hu_conv = Result_PaymentIdPaymentSendFailureZ.constr_from_ptr(ret);
40                 return ret_hu_conv;
41         }
42
43         public static Result_PaymentIdPaymentSendFailureZ constructor_err(PaymentSendFailure e) {
44                 number ret = bindings.CResult_PaymentIdPaymentSendFailureZ_err(e.ptr);
45                 Result_PaymentIdPaymentSendFailureZ ret_hu_conv = Result_PaymentIdPaymentSendFailureZ.constr_from_ptr(ret);
46                 return ret_hu_conv;
47         }
48
49         public boolean is_ok() {
50                 boolean ret = bindings.CResult_PaymentIdPaymentSendFailureZ_is_ok(this.ptr);
51                 return ret;
52         }
53
54         public number clone_ptr() {
55                 number ret = bindings.CResult_PaymentIdPaymentSendFailureZ_clone_ptr(this.ptr);
56                 return ret;
57         }
58
59         public Result_PaymentIdPaymentSendFailureZ clone() {
60                 number ret = bindings.CResult_PaymentIdPaymentSendFailureZ_clone(this.ptr);
61                 Result_PaymentIdPaymentSendFailureZ ret_hu_conv = Result_PaymentIdPaymentSendFailureZ.constr_from_ptr(ret);
62                 return ret_hu_conv;
63         }
64
65 }