Update auto-generated bindings
[ldk-java] / ts / structs / Result_InvoiceSemanticErrorZ.ts
1
2 import CommonBase from './CommonBase';
3 import * as bindings from '../bindings' // TODO: figure out location
4
5 public class Result_InvoiceSemanticErrorZ extends CommonBase {
6         private Result_InvoiceSemanticErrorZ(Object _dummy, long ptr) { super(ptr); }
7         protected void finalize() throws Throwable {
8                 if (ptr != 0) { bindings.CResult_InvoiceSemanticErrorZ_free(ptr); } super.finalize();
9         }
10
11         static Result_InvoiceSemanticErrorZ constr_from_ptr(long ptr) {
12                 if (bindings.LDKCResult_InvoiceSemanticErrorZ_result_ok(ptr)) {
13                         return new Result_InvoiceSemanticErrorZ_OK(null, ptr);
14                 } else {
15                         return new Result_InvoiceSemanticErrorZ_Err(null, ptr);
16                 }
17         }
18         public static final class Result_InvoiceSemanticErrorZ_OK extends Result_InvoiceSemanticErrorZ {
19                 public final Invoice res;
20                 private Result_InvoiceSemanticErrorZ_OK(Object _dummy, long ptr) {
21                         super(_dummy, ptr);
22                         number res = bindings.LDKCResult_InvoiceSemanticErrorZ_get_ok(ptr);
23                         const res_hu_conv: Invoice = new Invoice(null, res);
24                         res_hu_conv.ptrs_to.add(this);
25                         this.res = res_hu_conv;
26                 }
27         }
28
29         public static final class Result_InvoiceSemanticErrorZ_Err extends Result_InvoiceSemanticErrorZ {
30                 public final SemanticError err;
31                 private Result_InvoiceSemanticErrorZ_Err(Object _dummy, long ptr) {
32                         super(_dummy, ptr);
33                         this.err = bindings.LDKCResult_InvoiceSemanticErrorZ_get_err(ptr);
34                 }
35         }
36
37         public static Result_InvoiceSemanticErrorZ constructor__ok(Invoice o) {
38                 number ret = bindings.CResult_InvoiceSemanticErrorZ_ok(o == null ? 0 : o.ptr & ~1);
39                 Result_InvoiceSemanticErrorZ ret_hu_conv = Result_InvoiceSemanticErrorZ.constr_from_ptr(ret);
40                 ret_hu_conv.ptrs_to.add(o);
41                 return ret_hu_conv;
42         }
43
44         public static Result_InvoiceSemanticErrorZ constructor__err(SemanticError e) {
45                 number ret = bindings.CResult_InvoiceSemanticErrorZ_err(e);
46                 Result_InvoiceSemanticErrorZ ret_hu_conv = Result_InvoiceSemanticErrorZ.constr_from_ptr(ret);
47                 return ret_hu_conv;
48         }
49
50         public Result_InvoiceSemanticErrorZ _clone() {
51                 number ret = bindings.CResult_InvoiceSemanticErrorZ_clone(this.ptr);
52                 Result_InvoiceSemanticErrorZ ret_hu_conv = Result_InvoiceSemanticErrorZ.constr_from_ptr(ret);
53                 return ret_hu_conv;
54         }
55
56 }