[C#] Update auto-generated C# bindings
[ldk-java] / c_sharp / src / org / ldk / structs / DelayedPaymentBasepoint.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
9 /**
10  * Base key used in conjunction with a `per_commitment_point` to generate a [`DelayedPaymentKey`].
11  * 
12  * The delayed payment key is used to pay the commitment state broadcaster their
13  * non-HTLC-encumbered funds after a delay to give their counterparty a chance to punish if the
14  * state broadcasted was previously revoked.
15  */
16 public class DelayedPaymentBasepoint : CommonBase {
17         internal DelayedPaymentBasepoint(object _dummy, long ptr) : base(ptr) { }
18         ~DelayedPaymentBasepoint() {
19                 if (ptr != 0) { bindings.DelayedPaymentBasepoint_free(ptr); }
20         }
21
22         public byte[] get_a() {
23                 long ret = bindings.DelayedPaymentBasepoint_get_a(this.ptr);
24                 GC.KeepAlive(this);
25                 if (ret >= 0 && ret <= 4096) { return null; }
26                 byte[] ret_conv = InternalUtils.decodeUint8Array(ret);
27                 return ret_conv;
28         }
29
30         public void set_a(byte[] val) {
31                 bindings.DelayedPaymentBasepoint_set_a(this.ptr, InternalUtils.encodeUint8Array(InternalUtils.check_arr_len(val, 33)));
32                 GC.KeepAlive(this);
33                 GC.KeepAlive(val);
34         }
35
36         /**
37          * Constructs a new DelayedPaymentBasepoint given each field
38          */
39         public static DelayedPaymentBasepoint of(byte[] a_arg) {
40                 long ret = bindings.DelayedPaymentBasepoint_new(InternalUtils.encodeUint8Array(InternalUtils.check_arr_len(a_arg, 33)));
41                 GC.KeepAlive(a_arg);
42                 if (ret >= 0 && ret <= 4096) { return null; }
43                 org.ldk.structs.DelayedPaymentBasepoint ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new org.ldk.structs.DelayedPaymentBasepoint(null, ret); }
44                 if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.AddLast(ret_hu_conv); };
45                 return ret_hu_conv;
46         }
47
48         /**
49          * Checks if two DelayedPaymentBasepoints contain equal inner contents.
50          * This ignores pointers and is_owned flags and looks at the values in fields.
51          * Two objects with NULL inner values will be considered "equal" here.
52          */
53         public bool eq(org.ldk.structs.DelayedPaymentBasepoint b) {
54                 bool ret = bindings.DelayedPaymentBasepoint_eq(this.ptr, b == null ? 0 : b.ptr);
55                 GC.KeepAlive(this);
56                 GC.KeepAlive(b);
57                 if (this != null) { this.ptrs_to.AddLast(b); };
58                 return ret;
59         }
60
61         public override bool Equals(object o) {
62                 if (!(o is DelayedPaymentBasepoint)) return false;
63                 return this.eq((DelayedPaymentBasepoint)o);
64         }
65         internal long clone_ptr() {
66                 long ret = bindings.DelayedPaymentBasepoint_clone_ptr(this.ptr);
67                 GC.KeepAlive(this);
68                 return ret;
69         }
70
71         /**
72          * Creates a copy of the DelayedPaymentBasepoint
73          */
74         public DelayedPaymentBasepoint clone() {
75                 long ret = bindings.DelayedPaymentBasepoint_clone(this.ptr);
76                 GC.KeepAlive(this);
77                 if (ret >= 0 && ret <= 4096) { return null; }
78                 org.ldk.structs.DelayedPaymentBasepoint ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new org.ldk.structs.DelayedPaymentBasepoint(null, ret); }
79                 if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.AddLast(this); };
80                 return ret_hu_conv;
81         }
82
83         /**
84          * Generates a non-cryptographic 64-bit hash of the DelayedPaymentBasepoint.
85          */
86         public long hash() {
87                 long ret = bindings.DelayedPaymentBasepoint_hash(this.ptr);
88                 GC.KeepAlive(this);
89                 return ret;
90         }
91
92         public override int GetHashCode() {
93                 return (int)this.hash();
94         }
95         /**
96          * Get inner Public Key
97          */
98         public byte[] to_public_key() {
99                 long ret = bindings.DelayedPaymentBasepoint_to_public_key(this.ptr);
100                 GC.KeepAlive(this);
101                 if (ret >= 0 && ret <= 4096) { return null; }
102                 byte[] ret_conv = InternalUtils.decodeUint8Array(ret);
103                 return ret_conv;
104         }
105
106         /**
107          * Serialize the DelayedPaymentBasepoint object into a byte array which can be read by DelayedPaymentBasepoint_read
108          */
109         public byte[] write() {
110                 long ret = bindings.DelayedPaymentBasepoint_write(this.ptr);
111                 GC.KeepAlive(this);
112                 if (ret >= 0 && ret <= 4096) { return null; }
113                 byte[] ret_conv = InternalUtils.decodeUint8Array(ret);
114                 return ret_conv;
115         }
116
117         /**
118          * Read a DelayedPaymentBasepoint from a byte array, created by DelayedPaymentBasepoint_write
119          */
120         public static Result_DelayedPaymentBasepointDecodeErrorZ read(byte[] ser) {
121                 long ret = bindings.DelayedPaymentBasepoint_read(InternalUtils.encodeUint8Array(ser));
122                 GC.KeepAlive(ser);
123                 if (ret >= 0 && ret <= 4096) { return null; }
124                 Result_DelayedPaymentBasepointDecodeErrorZ ret_hu_conv = Result_DelayedPaymentBasepointDecodeErrorZ.constr_from_ptr(ret);
125                 return ret_hu_conv;
126         }
127
128 }
129 } } }