[C#] Check in initial auto-generated C# bindings
[ldk-java] / c_sharp / src / org / ldk / structs / DelayedPaymentOutputDescriptor.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  * Information about a spendable output to a P2WSH script.
11  * 
12  * See [`SpendableOutputDescriptor::DelayedPaymentOutput`] for more details on how to spend this.
13  */
14 public class DelayedPaymentOutputDescriptor : CommonBase {
15         internal DelayedPaymentOutputDescriptor(object _dummy, long ptr) : base(ptr) { }
16         ~DelayedPaymentOutputDescriptor() {
17                 if (ptr != 0) { bindings.DelayedPaymentOutputDescriptor_free(ptr); }
18         }
19
20         /**
21          * The outpoint which is spendable.
22          */
23         public OutPoint get_outpoint() {
24                 long ret = bindings.DelayedPaymentOutputDescriptor_get_outpoint(this.ptr);
25                 GC.KeepAlive(this);
26                 if (ret >= 0 && ret <= 4096) { return null; }
27                 org.ldk.structs.OutPoint ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new org.ldk.structs.OutPoint(null, ret); }
28                 if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.AddLast(this); };
29                 return ret_hu_conv;
30         }
31
32         /**
33          * The outpoint which is spendable.
34          */
35         public void set_outpoint(org.ldk.structs.OutPoint val) {
36                 bindings.DelayedPaymentOutputDescriptor_set_outpoint(this.ptr, val == null ? 0 : val.ptr);
37                 GC.KeepAlive(this);
38                 GC.KeepAlive(val);
39                 if (this != null) { this.ptrs_to.AddLast(val); };
40         }
41
42         /**
43          * Per commitment point to derive the delayed payment key by key holder.
44          */
45         public byte[] get_per_commitment_point() {
46                 byte[] ret = bindings.DelayedPaymentOutputDescriptor_get_per_commitment_point(this.ptr);
47                 GC.KeepAlive(this);
48                 return ret;
49         }
50
51         /**
52          * Per commitment point to derive the delayed payment key by key holder.
53          */
54         public void set_per_commitment_point(byte[] val) {
55                 bindings.DelayedPaymentOutputDescriptor_set_per_commitment_point(this.ptr, InternalUtils.check_arr_len(val, 33));
56                 GC.KeepAlive(this);
57                 GC.KeepAlive(val);
58         }
59
60         /**
61          * The `nSequence` value which must be set in the spending input to satisfy the `OP_CSV` in
62          * the witness_script.
63          */
64         public short get_to_self_delay() {
65                 short ret = bindings.DelayedPaymentOutputDescriptor_get_to_self_delay(this.ptr);
66                 GC.KeepAlive(this);
67                 return ret;
68         }
69
70         /**
71          * The `nSequence` value which must be set in the spending input to satisfy the `OP_CSV` in
72          * the witness_script.
73          */
74         public void set_to_self_delay(short val) {
75                 bindings.DelayedPaymentOutputDescriptor_set_to_self_delay(this.ptr, val);
76                 GC.KeepAlive(this);
77                 GC.KeepAlive(val);
78         }
79
80         /**
81          * The output which is referenced by the given outpoint.
82          * 
83          * Returns a copy of the field.
84          */
85         public TxOut get_output() {
86                 long ret = bindings.DelayedPaymentOutputDescriptor_get_output(this.ptr);
87                 GC.KeepAlive(this);
88                 if (ret >= 0 && ret <= 4096) { return null; }
89                 TxOut ret_conv = new TxOut(null, ret);
90                 return ret_conv;
91         }
92
93         /**
94          * The output which is referenced by the given outpoint.
95          */
96         public void set_output(org.ldk.structs.TxOut val) {
97                 bindings.DelayedPaymentOutputDescriptor_set_output(this.ptr, val.ptr);
98                 GC.KeepAlive(this);
99                 GC.KeepAlive(val);
100         }
101
102         /**
103          * The revocation point specific to the commitment transaction which was broadcast. Used to
104          * derive the witnessScript for this output.
105          */
106         public byte[] get_revocation_pubkey() {
107                 byte[] ret = bindings.DelayedPaymentOutputDescriptor_get_revocation_pubkey(this.ptr);
108                 GC.KeepAlive(this);
109                 return ret;
110         }
111
112         /**
113          * The revocation point specific to the commitment transaction which was broadcast. Used to
114          * derive the witnessScript for this output.
115          */
116         public void set_revocation_pubkey(byte[] val) {
117                 bindings.DelayedPaymentOutputDescriptor_set_revocation_pubkey(this.ptr, InternalUtils.check_arr_len(val, 33));
118                 GC.KeepAlive(this);
119                 GC.KeepAlive(val);
120         }
121
122         /**
123          * Arbitrary identification information returned by a call to [`BaseSign::channel_keys_id`].
124          * This may be useful in re-deriving keys used in the channel to spend the output.
125          */
126         public byte[] get_channel_keys_id() {
127                 byte[] ret = bindings.DelayedPaymentOutputDescriptor_get_channel_keys_id(this.ptr);
128                 GC.KeepAlive(this);
129                 return ret;
130         }
131
132         /**
133          * Arbitrary identification information returned by a call to [`BaseSign::channel_keys_id`].
134          * This may be useful in re-deriving keys used in the channel to spend the output.
135          */
136         public void set_channel_keys_id(byte[] val) {
137                 bindings.DelayedPaymentOutputDescriptor_set_channel_keys_id(this.ptr, InternalUtils.check_arr_len(val, 32));
138                 GC.KeepAlive(this);
139                 GC.KeepAlive(val);
140         }
141
142         /**
143          * The value of the channel which this output originated from, possibly indirectly.
144          */
145         public long get_channel_value_satoshis() {
146                 long ret = bindings.DelayedPaymentOutputDescriptor_get_channel_value_satoshis(this.ptr);
147                 GC.KeepAlive(this);
148                 return ret;
149         }
150
151         /**
152          * The value of the channel which this output originated from, possibly indirectly.
153          */
154         public void set_channel_value_satoshis(long val) {
155                 bindings.DelayedPaymentOutputDescriptor_set_channel_value_satoshis(this.ptr, val);
156                 GC.KeepAlive(this);
157                 GC.KeepAlive(val);
158         }
159
160         /**
161          * Constructs a new DelayedPaymentOutputDescriptor given each field
162          */
163         public static DelayedPaymentOutputDescriptor of(org.ldk.structs.OutPoint outpoint_arg, byte[] per_commitment_point_arg, short to_self_delay_arg, org.ldk.structs.TxOut output_arg, byte[] revocation_pubkey_arg, byte[] channel_keys_id_arg, long channel_value_satoshis_arg) {
164                 long ret = bindings.DelayedPaymentOutputDescriptor_new(outpoint_arg == null ? 0 : outpoint_arg.ptr, InternalUtils.check_arr_len(per_commitment_point_arg, 33), to_self_delay_arg, output_arg.ptr, InternalUtils.check_arr_len(revocation_pubkey_arg, 33), InternalUtils.check_arr_len(channel_keys_id_arg, 32), channel_value_satoshis_arg);
165                 GC.KeepAlive(outpoint_arg);
166                 GC.KeepAlive(per_commitment_point_arg);
167                 GC.KeepAlive(to_self_delay_arg);
168                 GC.KeepAlive(output_arg);
169                 GC.KeepAlive(revocation_pubkey_arg);
170                 GC.KeepAlive(channel_keys_id_arg);
171                 GC.KeepAlive(channel_value_satoshis_arg);
172                 if (ret >= 0 && ret <= 4096) { return null; }
173                 org.ldk.structs.DelayedPaymentOutputDescriptor ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new org.ldk.structs.DelayedPaymentOutputDescriptor(null, ret); }
174                 if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.AddLast(ret_hu_conv); };
175                 if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.AddLast(outpoint_arg); };
176                 return ret_hu_conv;
177         }
178
179         internal long clone_ptr() {
180                 long ret = bindings.DelayedPaymentOutputDescriptor_clone_ptr(this.ptr);
181                 GC.KeepAlive(this);
182                 return ret;
183         }
184
185         /**
186          * Creates a copy of the DelayedPaymentOutputDescriptor
187          */
188         public DelayedPaymentOutputDescriptor clone() {
189                 long ret = bindings.DelayedPaymentOutputDescriptor_clone(this.ptr);
190                 GC.KeepAlive(this);
191                 if (ret >= 0 && ret <= 4096) { return null; }
192                 org.ldk.structs.DelayedPaymentOutputDescriptor ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new org.ldk.structs.DelayedPaymentOutputDescriptor(null, ret); }
193                 if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.AddLast(this); };
194                 return ret_hu_conv;
195         }
196
197         /**
198          * Checks if two DelayedPaymentOutputDescriptors contain equal inner contents.
199          * This ignores pointers and is_owned flags and looks at the values in fields.
200          * Two objects with NULL inner values will be considered "equal" here.
201          */
202         public bool eq(org.ldk.structs.DelayedPaymentOutputDescriptor b) {
203                 bool ret = bindings.DelayedPaymentOutputDescriptor_eq(this.ptr, b == null ? 0 : b.ptr);
204                 GC.KeepAlive(this);
205                 GC.KeepAlive(b);
206                 if (this != null) { this.ptrs_to.AddLast(b); };
207                 return ret;
208         }
209
210         public override bool Equals(object o) {
211                 if (!(o is DelayedPaymentOutputDescriptor)) return false;
212                 return this.eq((DelayedPaymentOutputDescriptor)o);
213         }
214         /**
215          * Serialize the DelayedPaymentOutputDescriptor object into a byte array which can be read by DelayedPaymentOutputDescriptor_read
216          */
217         public byte[] write() {
218                 byte[] ret = bindings.DelayedPaymentOutputDescriptor_write(this.ptr);
219                 GC.KeepAlive(this);
220                 return ret;
221         }
222
223         /**
224          * Read a DelayedPaymentOutputDescriptor from a byte array, created by DelayedPaymentOutputDescriptor_write
225          */
226         public static Result_DelayedPaymentOutputDescriptorDecodeErrorZ read(byte[] ser) {
227                 long ret = bindings.DelayedPaymentOutputDescriptor_read(ser);
228                 GC.KeepAlive(ser);
229                 if (ret >= 0 && ret <= 4096) { return null; }
230                 Result_DelayedPaymentOutputDescriptorDecodeErrorZ ret_hu_conv = Result_DelayedPaymentOutputDescriptorDecodeErrorZ.constr_from_ptr(ret);
231                 return ret_hu_conv;
232         }
233
234 }
235 } } }