Update auto-generated bindings
[ldk-java] / src / main / java / org / ldk / structs / StaticPaymentOutputDescriptor.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 import javax.annotation.Nullable;
8
9
10 /**
11  * Information about a spendable output to our \"payment key\". See
12  * SpendableOutputDescriptor::StaticPaymentOutput for more details on how to spend this.
13  */
14 @SuppressWarnings("unchecked") // We correctly assign various generic arrays
15 public class StaticPaymentOutputDescriptor extends CommonBase {
16         StaticPaymentOutputDescriptor(Object _dummy, long ptr) { super(ptr); }
17         @Override @SuppressWarnings("deprecation")
18         protected void finalize() throws Throwable {
19                 super.finalize();
20                 if (ptr != 0) { bindings.StaticPaymentOutputDescriptor_free(ptr); }
21         }
22
23         /**
24          * The outpoint which is spendable
25          */
26         public OutPoint get_outpoint() {
27                 long ret = bindings.StaticPaymentOutputDescriptor_get_outpoint(this.ptr);
28                 if (ret >= 0 && ret <= 4096) { return null; }
29                 OutPoint ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new OutPoint(null, ret); }
30                 ret_hu_conv.ptrs_to.add(this);
31                 return ret_hu_conv;
32         }
33
34         /**
35          * The outpoint which is spendable
36          */
37         public void set_outpoint(OutPoint val) {
38                 bindings.StaticPaymentOutputDescriptor_set_outpoint(this.ptr, val == null ? 0 : val.ptr & ~1);
39         }
40
41         /**
42          * The output which is referenced by the given outpoint
43          */
44         public void set_output(TxOut val) {
45                 bindings.StaticPaymentOutputDescriptor_set_output(this.ptr, val.ptr);
46         }
47
48         /**
49          * Arbitrary identification information returned by a call to
50          * `Sign::channel_keys_id()`. This may be useful in re-deriving keys used in
51          * the channel to spend the output.
52          */
53         public byte[] get_channel_keys_id() {
54                 byte[] ret = bindings.StaticPaymentOutputDescriptor_get_channel_keys_id(this.ptr);
55                 return ret;
56         }
57
58         /**
59          * Arbitrary identification information returned by a call to
60          * `Sign::channel_keys_id()`. This may be useful in re-deriving keys used in
61          * the channel to spend the output.
62          */
63         public void set_channel_keys_id(byte[] val) {
64                 bindings.StaticPaymentOutputDescriptor_set_channel_keys_id(this.ptr, InternalUtils.check_arr_len(val, 32));
65         }
66
67         /**
68          * The value of the channel which this transactions spends.
69          */
70         public long get_channel_value_satoshis() {
71                 long ret = bindings.StaticPaymentOutputDescriptor_get_channel_value_satoshis(this.ptr);
72                 return ret;
73         }
74
75         /**
76          * The value of the channel which this transactions spends.
77          */
78         public void set_channel_value_satoshis(long val) {
79                 bindings.StaticPaymentOutputDescriptor_set_channel_value_satoshis(this.ptr, val);
80         }
81
82         /**
83          * Constructs a new StaticPaymentOutputDescriptor given each field
84          */
85         public static StaticPaymentOutputDescriptor of(OutPoint outpoint_arg, TxOut output_arg, byte[] channel_keys_id_arg, long channel_value_satoshis_arg) {
86                 long ret = bindings.StaticPaymentOutputDescriptor_new(outpoint_arg == null ? 0 : outpoint_arg.ptr & ~1, output_arg.ptr, InternalUtils.check_arr_len(channel_keys_id_arg, 32), channel_value_satoshis_arg);
87                 if (ret >= 0 && ret <= 4096) { return null; }
88                 StaticPaymentOutputDescriptor ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new StaticPaymentOutputDescriptor(null, ret); }
89                 ret_hu_conv.ptrs_to.add(ret_hu_conv);
90                 return ret_hu_conv;
91         }
92
93         long clone_ptr() {
94                 long ret = bindings.StaticPaymentOutputDescriptor_clone_ptr(this.ptr);
95                 return ret;
96         }
97
98         /**
99          * Creates a copy of the StaticPaymentOutputDescriptor
100          */
101         public StaticPaymentOutputDescriptor clone() {
102                 long ret = bindings.StaticPaymentOutputDescriptor_clone(this.ptr);
103                 if (ret >= 0 && ret <= 4096) { return null; }
104                 StaticPaymentOutputDescriptor ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new StaticPaymentOutputDescriptor(null, ret); }
105                 ret_hu_conv.ptrs_to.add(this);
106                 return ret_hu_conv;
107         }
108
109         /**
110          * Serialize the StaticPaymentOutputDescriptor object into a byte array which can be read by StaticPaymentOutputDescriptor_read
111          */
112         public byte[] write() {
113                 byte[] ret = bindings.StaticPaymentOutputDescriptor_write(this.ptr);
114                 return ret;
115         }
116
117         /**
118          * Read a StaticPaymentOutputDescriptor from a byte array, created by StaticPaymentOutputDescriptor_write
119          */
120         public static Result_StaticPaymentOutputDescriptorDecodeErrorZ read(byte[] ser) {
121                 long ret = bindings.StaticPaymentOutputDescriptor_read(ser);
122                 if (ret >= 0 && ret <= 4096) { return null; }
123                 Result_StaticPaymentOutputDescriptorDecodeErrorZ ret_hu_conv = Result_StaticPaymentOutputDescriptorDecodeErrorZ.constr_from_ptr(ret);
124                 return ret_hu_conv;
125         }
126
127 }