Update auto-generated bindings to 0.0.103
[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, val);
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, channel_keys_id_arg, 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         /**
94          * Creates a copy of the StaticPaymentOutputDescriptor
95          */
96         public StaticPaymentOutputDescriptor clone() {
97                 long ret = bindings.StaticPaymentOutputDescriptor_clone(this.ptr);
98                 if (ret >= 0 && ret <= 4096) { return null; }
99                 StaticPaymentOutputDescriptor ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new StaticPaymentOutputDescriptor(null, ret); }
100                 ret_hu_conv.ptrs_to.add(this);
101                 return ret_hu_conv;
102         }
103
104         /**
105          * Serialize the StaticPaymentOutputDescriptor object into a byte array which can be read by StaticPaymentOutputDescriptor_read
106          */
107         public byte[] write() {
108                 byte[] ret = bindings.StaticPaymentOutputDescriptor_write(this.ptr);
109                 return ret;
110         }
111
112         /**
113          * Read a StaticPaymentOutputDescriptor from a byte array, created by StaticPaymentOutputDescriptor_write
114          */
115         public static Result_StaticPaymentOutputDescriptorDecodeErrorZ read(byte[] ser) {
116                 long ret = bindings.StaticPaymentOutputDescriptor_read(ser);
117                 if (ret >= 0 && ret <= 4096) { return null; }
118                 Result_StaticPaymentOutputDescriptorDecodeErrorZ ret_hu_conv = Result_StaticPaymentOutputDescriptorDecodeErrorZ.constr_from_ptr(ret);
119                 return ret_hu_conv;
120         }
121
122 }