[TS] Update auto-generated bindings to LDK-C-Bindings 0.0.123.1
[ldk-java] / c_sharp / src / org / ldk / structs / OfferId.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  * An identifier for an [`Offer`] built using [`DerivedMetadata`].
11  */
12 public class OfferId : CommonBase {
13         internal OfferId(object _dummy, long ptr) : base(ptr) { }
14         ~OfferId() {
15                 if (ptr != 0) { bindings.OfferId_free(ptr); }
16         }
17
18         public byte[] get_a() {
19                 long ret = bindings.OfferId_get_a(this.ptr);
20                 GC.KeepAlive(this);
21                 if (ret >= 0 && ret <= 4096) { return null; }
22                 byte[] ret_conv = InternalUtils.decodeUint8Array(ret);
23                 return ret_conv;
24         }
25
26         public void set_a(byte[] val) {
27                 bindings.OfferId_set_a(this.ptr, InternalUtils.encodeUint8Array(InternalUtils.check_arr_len(val, 32)));
28                 GC.KeepAlive(this);
29                 GC.KeepAlive(val);
30         }
31
32         /**
33          * Constructs a new OfferId given each field
34          */
35         public static OfferId of(byte[] a_arg) {
36                 long ret = bindings.OfferId_new(InternalUtils.encodeUint8Array(InternalUtils.check_arr_len(a_arg, 32)));
37                 GC.KeepAlive(a_arg);
38                 if (ret >= 0 && ret <= 4096) { return null; }
39                 org.ldk.structs.OfferId ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new org.ldk.structs.OfferId(null, ret); }
40                 if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.AddLast(ret_hu_conv); };
41                 return ret_hu_conv;
42         }
43
44         internal long clone_ptr() {
45                 long ret = bindings.OfferId_clone_ptr(this.ptr);
46                 GC.KeepAlive(this);
47                 return ret;
48         }
49
50         /**
51          * Creates a copy of the OfferId
52          */
53         public OfferId clone() {
54                 long ret = bindings.OfferId_clone(this.ptr);
55                 GC.KeepAlive(this);
56                 if (ret >= 0 && ret <= 4096) { return null; }
57                 org.ldk.structs.OfferId ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new org.ldk.structs.OfferId(null, ret); }
58                 if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.AddLast(this); };
59                 return ret_hu_conv;
60         }
61
62         /**
63          * Checks if two OfferIds contain equal inner contents.
64          * This ignores pointers and is_owned flags and looks at the values in fields.
65          * Two objects with NULL inner values will be considered "equal" here.
66          */
67         public bool eq(org.ldk.structs.OfferId b) {
68                 bool ret = bindings.OfferId_eq(this.ptr, b.ptr);
69                 GC.KeepAlive(this);
70                 GC.KeepAlive(b);
71                 if (this != null) { this.ptrs_to.AddLast(b); };
72                 return ret;
73         }
74
75         public override bool Equals(object o) {
76                 if (!(o is OfferId)) return false;
77                 return this.eq((OfferId)o);
78         }
79         /**
80          * Serialize the OfferId object into a byte array which can be read by OfferId_read
81          */
82         public byte[] write() {
83                 long ret = bindings.OfferId_write(this.ptr);
84                 GC.KeepAlive(this);
85                 if (ret >= 0 && ret <= 4096) { return null; }
86                 byte[] ret_conv = InternalUtils.decodeUint8Array(ret);
87                 return ret_conv;
88         }
89
90         /**
91          * Read a OfferId from a byte array, created by OfferId_write
92          */
93         public static Result_OfferIdDecodeErrorZ read(byte[] ser) {
94                 long ret = bindings.OfferId_read(InternalUtils.encodeUint8Array(ser));
95                 GC.KeepAlive(ser);
96                 if (ret >= 0 && ret <= 4096) { return null; }
97                 Result_OfferIdDecodeErrorZ ret_hu_conv = Result_OfferIdDecodeErrorZ.constr_from_ptr(ret);
98                 return ret_hu_conv;
99         }
100
101 }
102 } } }