Update auto-generated bindings
[ldk-java] / src / main / java / org / ldk / structs / DelayedPaymentOutputDescriptor.java
1 package org.ldk.structs;
2
3 import org.ldk.impl.bindings;
4 import org.ldk.enums.*;
5 import org.ldk.util.*;
6 import java.util.Arrays;
7
8
9 /**
10  * Information about a spendable output to a P2WSH script. See
11  * SpendableOutputDescriptor::DelayedPaymentOutput for more details on how to spend this.
12  */
13 @SuppressWarnings("unchecked") // We correctly assign various generic arrays
14 public class DelayedPaymentOutputDescriptor extends CommonBase {
15         DelayedPaymentOutputDescriptor(Object _dummy, long ptr) { super(ptr); }
16         @Override @SuppressWarnings("deprecation")
17         protected void finalize() throws Throwable {
18                 super.finalize();
19                 if (ptr != 0) { bindings.DelayedPaymentOutputDescriptor_free(ptr); }
20         }
21
22         /**
23          * The outpoint which is spendable
24          */
25         public OutPoint get_outpoint() {
26                 long ret = bindings.DelayedPaymentOutputDescriptor_get_outpoint(this.ptr);
27                 if (ret < 1024) { return null; }
28                 OutPoint ret_hu_conv = new OutPoint(null, ret);
29                 ret_hu_conv.ptrs_to.add(this);
30                 return ret_hu_conv;
31         }
32
33         /**
34          * The outpoint which is spendable
35          */
36         public void set_outpoint(OutPoint val) {
37                 bindings.DelayedPaymentOutputDescriptor_set_outpoint(this.ptr, val == null ? 0 : val.ptr & ~1);
38                 this.ptrs_to.add(val);
39         }
40
41         /**
42          * Per commitment point to derive delayed_payment_key by key holder
43          */
44         public byte[] get_per_commitment_point() {
45                 byte[] ret = bindings.DelayedPaymentOutputDescriptor_get_per_commitment_point(this.ptr);
46                 return ret;
47         }
48
49         /**
50          * Per commitment point to derive delayed_payment_key by key holder
51          */
52         public void set_per_commitment_point(byte[] val) {
53                 bindings.DelayedPaymentOutputDescriptor_set_per_commitment_point(this.ptr, val);
54         }
55
56         /**
57          * The nSequence value which must be set in the spending input to satisfy the OP_CSV in
58          * the witness_script.
59          */
60         public short get_to_self_delay() {
61                 short ret = bindings.DelayedPaymentOutputDescriptor_get_to_self_delay(this.ptr);
62                 return ret;
63         }
64
65         /**
66          * The nSequence value which must be set in the spending input to satisfy the OP_CSV in
67          * the witness_script.
68          */
69         public void set_to_self_delay(short val) {
70                 bindings.DelayedPaymentOutputDescriptor_set_to_self_delay(this.ptr, val);
71         }
72
73         /**
74          * The output which is referenced by the given outpoint
75          */
76         public void set_output(TxOut val) {
77                 bindings.DelayedPaymentOutputDescriptor_set_output(this.ptr, val.ptr);
78         }
79
80         /**
81          * The revocation point specific to the commitment transaction which was broadcast. Used to
82          * derive the witnessScript for this output.
83          */
84         public byte[] get_revocation_pubkey() {
85                 byte[] ret = bindings.DelayedPaymentOutputDescriptor_get_revocation_pubkey(this.ptr);
86                 return ret;
87         }
88
89         /**
90          * The revocation point specific to the commitment transaction which was broadcast. Used to
91          * derive the witnessScript for this output.
92          */
93         public void set_revocation_pubkey(byte[] val) {
94                 bindings.DelayedPaymentOutputDescriptor_set_revocation_pubkey(this.ptr, val);
95         }
96
97         /**
98          * Arbitrary identification information returned by a call to
99          * `Sign::channel_keys_id()`. This may be useful in re-deriving keys used in
100          * the channel to spend the output.
101          */
102         public byte[] get_channel_keys_id() {
103                 byte[] ret = bindings.DelayedPaymentOutputDescriptor_get_channel_keys_id(this.ptr);
104                 return ret;
105         }
106
107         /**
108          * Arbitrary identification information returned by a call to
109          * `Sign::channel_keys_id()`. This may be useful in re-deriving keys used in
110          * the channel to spend the output.
111          */
112         public void set_channel_keys_id(byte[] val) {
113                 bindings.DelayedPaymentOutputDescriptor_set_channel_keys_id(this.ptr, val);
114         }
115
116         /**
117          * The value of the channel which this output originated from, possibly indirectly.
118          */
119         public long get_channel_value_satoshis() {
120                 long ret = bindings.DelayedPaymentOutputDescriptor_get_channel_value_satoshis(this.ptr);
121                 return ret;
122         }
123
124         /**
125          * The value of the channel which this output originated from, possibly indirectly.
126          */
127         public void set_channel_value_satoshis(long val) {
128                 bindings.DelayedPaymentOutputDescriptor_set_channel_value_satoshis(this.ptr, val);
129         }
130
131         /**
132          * Constructs a new DelayedPaymentOutputDescriptor given each field
133          */
134         public static DelayedPaymentOutputDescriptor of(OutPoint outpoint_arg, byte[] per_commitment_point_arg, short to_self_delay_arg, TxOut output_arg, byte[] revocation_pubkey_arg, byte[] channel_keys_id_arg, long channel_value_satoshis_arg) {
135                 long ret = bindings.DelayedPaymentOutputDescriptor_new(outpoint_arg == null ? 0 : outpoint_arg.ptr & ~1, per_commitment_point_arg, to_self_delay_arg, output_arg.ptr, revocation_pubkey_arg, channel_keys_id_arg, channel_value_satoshis_arg);
136                 if (ret < 1024) { return null; }
137                 DelayedPaymentOutputDescriptor ret_hu_conv = new DelayedPaymentOutputDescriptor(null, ret);
138                 ret_hu_conv.ptrs_to.add(ret_hu_conv);
139                 ret_hu_conv.ptrs_to.add(outpoint_arg);
140                 return ret_hu_conv;
141         }
142
143         /**
144          * Creates a copy of the DelayedPaymentOutputDescriptor
145          */
146         public DelayedPaymentOutputDescriptor clone() {
147                 long ret = bindings.DelayedPaymentOutputDescriptor_clone(this.ptr);
148                 if (ret < 1024) { return null; }
149                 DelayedPaymentOutputDescriptor ret_hu_conv = new DelayedPaymentOutputDescriptor(null, ret);
150                 ret_hu_conv.ptrs_to.add(this);
151                 return ret_hu_conv;
152         }
153
154         /**
155          * Serialize the DelayedPaymentOutputDescriptor object into a byte array which can be read by DelayedPaymentOutputDescriptor_read
156          */
157         public byte[] write() {
158                 byte[] ret = bindings.DelayedPaymentOutputDescriptor_write(this.ptr);
159                 return ret;
160         }
161
162         /**
163          * Read a DelayedPaymentOutputDescriptor from a byte array, created by DelayedPaymentOutputDescriptor_write
164          */
165         public static Result_DelayedPaymentOutputDescriptorDecodeErrorZ read(byte[] ser) {
166                 long ret = bindings.DelayedPaymentOutputDescriptor_read(ser);
167                 if (ret < 1024) { return null; }
168                 Result_DelayedPaymentOutputDescriptorDecodeErrorZ ret_hu_conv = Result_DelayedPaymentOutputDescriptorDecodeErrorZ.constr_from_ptr(ret);
169                 return ret_hu_conv;
170         }
171
172 }