[TS] Update auto-generated bindings to LDK-C-Bindings 0.0.123.1
[ldk-java] / c_sharp / src / org / ldk / structs / TxComplete.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  * A tx_complete message signalling the conclusion of a peer's transaction contributions during
11  * interactive transaction construction.
12  */
13 public class TxComplete : CommonBase {
14         internal TxComplete(object _dummy, long ptr) : base(ptr) { }
15         ~TxComplete() {
16                 if (ptr != 0) { bindings.TxComplete_free(ptr); }
17         }
18
19         /**
20          * The channel ID
21          */
22         public ChannelId get_channel_id() {
23                 long ret = bindings.TxComplete_get_channel_id(this.ptr);
24                 GC.KeepAlive(this);
25                 if (ret >= 0 && ret <= 4096) { return null; }
26                 org.ldk.structs.ChannelId ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new org.ldk.structs.ChannelId(null, ret); }
27                 if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.AddLast(this); };
28                 return ret_hu_conv;
29         }
30
31         /**
32          * The channel ID
33          */
34         public void set_channel_id(org.ldk.structs.ChannelId val) {
35                 bindings.TxComplete_set_channel_id(this.ptr, val.ptr);
36                 GC.KeepAlive(this);
37                 GC.KeepAlive(val);
38                 if (this != null) { this.ptrs_to.AddLast(val); };
39         }
40
41         /**
42          * Constructs a new TxComplete given each field
43          */
44         public static TxComplete of(org.ldk.structs.ChannelId channel_id_arg) {
45                 long ret = bindings.TxComplete_new(channel_id_arg.ptr);
46                 GC.KeepAlive(channel_id_arg);
47                 if (ret >= 0 && ret <= 4096) { return null; }
48                 org.ldk.structs.TxComplete ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new org.ldk.structs.TxComplete(null, ret); }
49                 if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.AddLast(ret_hu_conv); };
50                 if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.AddLast(channel_id_arg); };
51                 return ret_hu_conv;
52         }
53
54         internal long clone_ptr() {
55                 long ret = bindings.TxComplete_clone_ptr(this.ptr);
56                 GC.KeepAlive(this);
57                 return ret;
58         }
59
60         /**
61          * Creates a copy of the TxComplete
62          */
63         public TxComplete clone() {
64                 long ret = bindings.TxComplete_clone(this.ptr);
65                 GC.KeepAlive(this);
66                 if (ret >= 0 && ret <= 4096) { return null; }
67                 org.ldk.structs.TxComplete ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new org.ldk.structs.TxComplete(null, ret); }
68                 if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.AddLast(this); };
69                 return ret_hu_conv;
70         }
71
72         /**
73          * Generates a non-cryptographic 64-bit hash of the TxComplete.
74          */
75         public long hash() {
76                 long ret = bindings.TxComplete_hash(this.ptr);
77                 GC.KeepAlive(this);
78                 return ret;
79         }
80
81         public override int GetHashCode() {
82                 return (int)this.hash();
83         }
84         /**
85          * Checks if two TxCompletes contain equal inner contents.
86          * This ignores pointers and is_owned flags and looks at the values in fields.
87          * Two objects with NULL inner values will be considered "equal" here.
88          */
89         public bool eq(org.ldk.structs.TxComplete b) {
90                 bool ret = bindings.TxComplete_eq(this.ptr, b.ptr);
91                 GC.KeepAlive(this);
92                 GC.KeepAlive(b);
93                 if (this != null) { this.ptrs_to.AddLast(b); };
94                 return ret;
95         }
96
97         public override bool Equals(object o) {
98                 if (!(o is TxComplete)) return false;
99                 return this.eq((TxComplete)o);
100         }
101         /**
102          * Serialize the TxComplete object into a byte array which can be read by TxComplete_read
103          */
104         public byte[] write() {
105                 long ret = bindings.TxComplete_write(this.ptr);
106                 GC.KeepAlive(this);
107                 if (ret >= 0 && ret <= 4096) { return null; }
108                 byte[] ret_conv = InternalUtils.decodeUint8Array(ret);
109                 return ret_conv;
110         }
111
112         /**
113          * Read a TxComplete from a byte array, created by TxComplete_write
114          */
115         public static Result_TxCompleteDecodeErrorZ read(byte[] ser) {
116                 long ret = bindings.TxComplete_read(InternalUtils.encodeUint8Array(ser));
117                 GC.KeepAlive(ser);
118                 if (ret >= 0 && ret <= 4096) { return null; }
119                 Result_TxCompleteDecodeErrorZ ret_hu_conv = Result_TxCompleteDecodeErrorZ.constr_from_ptr(ret);
120                 return ret_hu_conv;
121         }
122
123 }
124 } } }