706cbf4294f4c49073c056655e92f552dab24c1a
[ldk-java] / c_sharp / src / org / ldk / structs / Result_NonePaymentErrorZ.cs
1 using org.ldk.impl;
2 using org.ldk.enums;
3 using org.ldk.util;
4 using System;
5
6 namespace org { namespace ldk { namespace structs {
7
8 public class Result_NonePaymentErrorZ : CommonBase {
9         Result_NonePaymentErrorZ(object _dummy, long ptr) : base(ptr) { }
10         ~Result_NonePaymentErrorZ() {
11                 if (ptr != 0) { bindings.CResult_NonePaymentErrorZ_free(ptr); }
12         }
13
14         internal static Result_NonePaymentErrorZ constr_from_ptr(long ptr) {
15                 if (bindings.CResult_NonePaymentErrorZ_is_ok(ptr)) {
16                         return new Result_NonePaymentErrorZ_OK(null, ptr);
17                 } else {
18                         return new Result_NonePaymentErrorZ_Err(null, ptr);
19                 }
20         }
21         public class Result_NonePaymentErrorZ_OK : Result_NonePaymentErrorZ {
22                 internal Result_NonePaymentErrorZ_OK(object _dummy, long ptr) : base(_dummy, ptr) {
23                 }
24         }
25
26         public class Result_NonePaymentErrorZ_Err : Result_NonePaymentErrorZ {
27                 public readonly PaymentError err;
28                 internal Result_NonePaymentErrorZ_Err(object _dummy, long ptr) : base(_dummy, ptr) {
29                         long err = bindings.CResult_NonePaymentErrorZ_get_err(ptr);
30                         org.ldk.structs.PaymentError err_hu_conv = org.ldk.structs.PaymentError.constr_from_ptr(err);
31                         if (err_hu_conv != null) { err_hu_conv.ptrs_to.AddLast(this); };
32                         this.err = err_hu_conv;
33                 }
34         }
35
36         /**
37          * Creates a new CResult_NonePaymentErrorZ in the success state.
38          */
39         public static Result_NonePaymentErrorZ ok() {
40                 long ret = bindings.CResult_NonePaymentErrorZ_ok();
41                 if (ret >= 0 && ret <= 4096) { return null; }
42                 Result_NonePaymentErrorZ ret_hu_conv = Result_NonePaymentErrorZ.constr_from_ptr(ret);
43                 return ret_hu_conv;
44         }
45
46         /**
47          * Creates a new CResult_NonePaymentErrorZ in the error state.
48          */
49         public static Result_NonePaymentErrorZ err(org.ldk.structs.PaymentError e) {
50                 long ret = bindings.CResult_NonePaymentErrorZ_err(e.ptr);
51                 GC.KeepAlive(e);
52                 if (ret >= 0 && ret <= 4096) { return null; }
53                 Result_NonePaymentErrorZ ret_hu_conv = Result_NonePaymentErrorZ.constr_from_ptr(ret);
54                 if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.AddLast(e); };
55                 return ret_hu_conv;
56         }
57
58         /**
59          * Checks if the given object is currently in the success state
60          */
61         public bool is_ok() {
62                 bool ret = bindings.CResult_NonePaymentErrorZ_is_ok(this.ptr);
63                 GC.KeepAlive(this);
64                 return ret;
65         }
66
67         internal long clone_ptr() {
68                 long ret = bindings.CResult_NonePaymentErrorZ_clone_ptr(this.ptr);
69                 GC.KeepAlive(this);
70                 return ret;
71         }
72
73         /**
74          * Creates a new CResult_NonePaymentErrorZ which has the same data as `orig`
75          * but with all dynamically-allocated buffers duplicated in new buffers.
76          */
77         public Result_NonePaymentErrorZ clone() {
78                 long ret = bindings.CResult_NonePaymentErrorZ_clone(this.ptr);
79                 GC.KeepAlive(this);
80                 if (ret >= 0 && ret <= 4096) { return null; }
81                 Result_NonePaymentErrorZ ret_hu_conv = Result_NonePaymentErrorZ.constr_from_ptr(ret);
82                 return ret_hu_conv;
83         }
84
85 }
86 } } }