[C#] Update auto-generated C# bindings
[ldk-java] / c_sharp / src / org / ldk / structs / Result_ThirtyTwoBytesPaymentSendFailureZ.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_ThirtyTwoBytesPaymentSendFailureZ : CommonBase {
9         Result_ThirtyTwoBytesPaymentSendFailureZ(object _dummy, long ptr) : base(ptr) { }
10         ~Result_ThirtyTwoBytesPaymentSendFailureZ() {
11                 if (ptr != 0) { bindings.CResult_ThirtyTwoBytesPaymentSendFailureZ_free(ptr); }
12         }
13
14         internal static Result_ThirtyTwoBytesPaymentSendFailureZ constr_from_ptr(long ptr) {
15                 if (bindings.CResult_ThirtyTwoBytesPaymentSendFailureZ_is_ok(ptr)) {
16                         return new Result_ThirtyTwoBytesPaymentSendFailureZ_OK(null, ptr);
17                 } else {
18                         return new Result_ThirtyTwoBytesPaymentSendFailureZ_Err(null, ptr);
19                 }
20         }
21         public class Result_ThirtyTwoBytesPaymentSendFailureZ_OK : Result_ThirtyTwoBytesPaymentSendFailureZ {
22                 public readonly byte[] res;
23                 internal Result_ThirtyTwoBytesPaymentSendFailureZ_OK(object _dummy, long ptr) : base(_dummy, ptr) {
24                         long res = bindings.CResult_ThirtyTwoBytesPaymentSendFailureZ_get_ok(ptr);
25                         byte[] res_conv = InternalUtils.decodeUint8Array(res);
26                         this.res = res_conv;
27                 }
28         }
29
30         public class Result_ThirtyTwoBytesPaymentSendFailureZ_Err : Result_ThirtyTwoBytesPaymentSendFailureZ {
31                 public readonly PaymentSendFailure err;
32                 internal Result_ThirtyTwoBytesPaymentSendFailureZ_Err(object _dummy, long ptr) : base(_dummy, ptr) {
33                         long err = bindings.CResult_ThirtyTwoBytesPaymentSendFailureZ_get_err(ptr);
34                         org.ldk.structs.PaymentSendFailure err_hu_conv = org.ldk.structs.PaymentSendFailure.constr_from_ptr(err);
35                         if (err_hu_conv != null) { err_hu_conv.ptrs_to.AddLast(this); };
36                         this.err = err_hu_conv;
37                 }
38         }
39
40         /**
41          * Creates a new CResult_ThirtyTwoBytesPaymentSendFailureZ in the success state.
42          */
43         public static Result_ThirtyTwoBytesPaymentSendFailureZ ok(byte[] o) {
44                 long ret = bindings.CResult_ThirtyTwoBytesPaymentSendFailureZ_ok(InternalUtils.encodeUint8Array(InternalUtils.check_arr_len(o, 32)));
45                 GC.KeepAlive(o);
46                 if (ret >= 0 && ret <= 4096) { return null; }
47                 Result_ThirtyTwoBytesPaymentSendFailureZ ret_hu_conv = Result_ThirtyTwoBytesPaymentSendFailureZ.constr_from_ptr(ret);
48                 return ret_hu_conv;
49         }
50
51         /**
52          * Creates a new CResult_ThirtyTwoBytesPaymentSendFailureZ in the error state.
53          */
54         public static Result_ThirtyTwoBytesPaymentSendFailureZ err(org.ldk.structs.PaymentSendFailure e) {
55                 long ret = bindings.CResult_ThirtyTwoBytesPaymentSendFailureZ_err(e.ptr);
56                 GC.KeepAlive(e);
57                 if (ret >= 0 && ret <= 4096) { return null; }
58                 Result_ThirtyTwoBytesPaymentSendFailureZ ret_hu_conv = Result_ThirtyTwoBytesPaymentSendFailureZ.constr_from_ptr(ret);
59                 if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.AddLast(e); };
60                 return ret_hu_conv;
61         }
62
63         /**
64          * Checks if the given object is currently in the success state
65          */
66         public bool is_ok() {
67                 bool ret = bindings.CResult_ThirtyTwoBytesPaymentSendFailureZ_is_ok(this.ptr);
68                 GC.KeepAlive(this);
69                 return ret;
70         }
71
72         internal long clone_ptr() {
73                 long ret = bindings.CResult_ThirtyTwoBytesPaymentSendFailureZ_clone_ptr(this.ptr);
74                 GC.KeepAlive(this);
75                 return ret;
76         }
77
78         /**
79          * Creates a new CResult_ThirtyTwoBytesPaymentSendFailureZ which has the same data as `orig`
80          * but with all dynamically-allocated buffers duplicated in new buffers.
81          */
82         public Result_ThirtyTwoBytesPaymentSendFailureZ clone() {
83                 long ret = bindings.CResult_ThirtyTwoBytesPaymentSendFailureZ_clone(this.ptr);
84                 GC.KeepAlive(this);
85                 if (ret >= 0 && ret <= 4096) { return null; }
86                 Result_ThirtyTwoBytesPaymentSendFailureZ ret_hu_conv = Result_ThirtyTwoBytesPaymentSendFailureZ.constr_from_ptr(ret);
87                 return ret_hu_conv;
88         }
89
90 }
91 } } }