[C#] Check in initial auto-generated C# bindings
[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                 return ret_hu_conv;
55         }
56
57         /**
58          * Checks if the given object is currently in the success state
59          */
60         public bool is_ok() {
61                 bool ret = bindings.CResult_NonePaymentErrorZ_is_ok(this.ptr);
62                 GC.KeepAlive(this);
63                 return ret;
64         }
65
66         internal long clone_ptr() {
67                 long ret = bindings.CResult_NonePaymentErrorZ_clone_ptr(this.ptr);
68                 GC.KeepAlive(this);
69                 return ret;
70         }
71
72         /**
73          * Creates a new CResult_NonePaymentErrorZ which has the same data as `orig`
74          * but with all dynamically-allocated buffers duplicated in new buffers.
75          */
76         public Result_NonePaymentErrorZ clone() {
77                 long ret = bindings.CResult_NonePaymentErrorZ_clone(this.ptr);
78                 GC.KeepAlive(this);
79                 if (ret >= 0 && ret <= 4096) { return null; }
80                 Result_NonePaymentErrorZ ret_hu_conv = Result_NonePaymentErrorZ.constr_from_ptr(ret);
81                 return ret_hu_conv;
82         }
83
84 }
85 } } }