[C#] Update auto-generated C# bindings
[ldk-java] / c_sharp / src / org / ldk / structs / InvoiceRequestFeatures.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  * Features used within an `invoice_request`.
11  */
12 public class InvoiceRequestFeatures : CommonBase {
13         internal InvoiceRequestFeatures(object _dummy, long ptr) : base(ptr) { }
14         ~InvoiceRequestFeatures() {
15                 if (ptr != 0) { bindings.InvoiceRequestFeatures_free(ptr); }
16         }
17
18         /**
19          * Checks if two InvoiceRequestFeaturess contain equal inner contents.
20          * This ignores pointers and is_owned flags and looks at the values in fields.
21          * Two objects with NULL inner values will be considered "equal" here.
22          */
23         public bool eq(org.ldk.structs.InvoiceRequestFeatures b) {
24                 bool ret = bindings.InvoiceRequestFeatures_eq(this.ptr, b == null ? 0 : b.ptr);
25                 GC.KeepAlive(this);
26                 GC.KeepAlive(b);
27                 if (this != null) { this.ptrs_to.AddLast(b); };
28                 return ret;
29         }
30
31         public override bool Equals(object o) {
32                 if (!(o is InvoiceRequestFeatures)) return false;
33                 return this.eq((InvoiceRequestFeatures)o);
34         }
35         internal long clone_ptr() {
36                 long ret = bindings.InvoiceRequestFeatures_clone_ptr(this.ptr);
37                 GC.KeepAlive(this);
38                 return ret;
39         }
40
41         /**
42          * Creates a copy of the InvoiceRequestFeatures
43          */
44         public InvoiceRequestFeatures clone() {
45                 long ret = bindings.InvoiceRequestFeatures_clone(this.ptr);
46                 GC.KeepAlive(this);
47                 if (ret >= 0 && ret <= 4096) { return null; }
48                 org.ldk.structs.InvoiceRequestFeatures ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new org.ldk.structs.InvoiceRequestFeatures(null, ret); }
49                 if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.AddLast(this); };
50                 return ret_hu_conv;
51         }
52
53         /**
54          * Generates a non-cryptographic 64-bit hash of the InvoiceRequestFeatures.
55          */
56         public long hash() {
57                 long ret = bindings.InvoiceRequestFeatures_hash(this.ptr);
58                 GC.KeepAlive(this);
59                 return ret;
60         }
61
62         public override int GetHashCode() {
63                 return (int)this.hash();
64         }
65         /**
66          * Create a blank Features with no features set
67          */
68         public static InvoiceRequestFeatures empty() {
69                 long ret = bindings.InvoiceRequestFeatures_empty();
70                 if (ret >= 0 && ret <= 4096) { return null; }
71                 org.ldk.structs.InvoiceRequestFeatures ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new org.ldk.structs.InvoiceRequestFeatures(null, ret); }
72                 if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.AddLast(ret_hu_conv); };
73                 return ret_hu_conv;
74         }
75
76         /**
77          * Returns true if this `Features` object contains required features unknown by `other`.
78          */
79         public bool requires_unknown_bits_from(org.ldk.structs.InvoiceRequestFeatures other) {
80                 bool ret = bindings.InvoiceRequestFeatures_requires_unknown_bits_from(this.ptr, other == null ? 0 : other.ptr);
81                 GC.KeepAlive(this);
82                 GC.KeepAlive(other);
83                 if (this != null) { this.ptrs_to.AddLast(other); };
84                 return ret;
85         }
86
87         /**
88          * Returns true if this `Features` object contains unknown feature flags which are set as
89          * \"required\".
90          */
91         public bool requires_unknown_bits() {
92                 bool ret = bindings.InvoiceRequestFeatures_requires_unknown_bits(this.ptr);
93                 GC.KeepAlive(this);
94                 return ret;
95         }
96
97         /**
98          * Sets a required feature bit. Errors if `bit` is outside the feature range as defined
99          * by [BOLT 9].
100          * 
101          * Note: Required bits are even. If an odd bit is given, then the corresponding even bit will
102          * be set instead (i.e., `bit - 1`).
103          * 
104          * [BOLT 9]: https://github.com/lightning/bolts/blob/master/09-features.md
105          */
106         public Result_NoneNoneZ set_required_feature_bit(long bit) {
107                 long ret = bindings.InvoiceRequestFeatures_set_required_feature_bit(this.ptr, bit);
108                 GC.KeepAlive(this);
109                 GC.KeepAlive(bit);
110                 if (ret >= 0 && ret <= 4096) { return null; }
111                 Result_NoneNoneZ ret_hu_conv = Result_NoneNoneZ.constr_from_ptr(ret);
112                 return ret_hu_conv;
113         }
114
115         /**
116          * Sets an optional feature bit. Errors if `bit` is outside the feature range as defined
117          * by [BOLT 9].
118          * 
119          * Note: Optional bits are odd. If an even bit is given, then the corresponding odd bit will be
120          * set instead (i.e., `bit + 1`).
121          * 
122          * [BOLT 9]: https://github.com/lightning/bolts/blob/master/09-features.md
123          */
124         public Result_NoneNoneZ set_optional_feature_bit(long bit) {
125                 long ret = bindings.InvoiceRequestFeatures_set_optional_feature_bit(this.ptr, bit);
126                 GC.KeepAlive(this);
127                 GC.KeepAlive(bit);
128                 if (ret >= 0 && ret <= 4096) { return null; }
129                 Result_NoneNoneZ ret_hu_conv = Result_NoneNoneZ.constr_from_ptr(ret);
130                 return ret_hu_conv;
131         }
132
133         /**
134          * Sets a required custom feature bit. Errors if `bit` is outside the custom range as defined
135          * by [bLIP 2] or if it is a known `T` feature.
136          * 
137          * Note: Required bits are even. If an odd bit is given, then the corresponding even bit will
138          * be set instead (i.e., `bit - 1`).
139          * 
140          * [bLIP 2]: https://github.com/lightning/blips/blob/master/blip-0002.md#feature-bits
141          */
142         public Result_NoneNoneZ set_required_custom_bit(long bit) {
143                 long ret = bindings.InvoiceRequestFeatures_set_required_custom_bit(this.ptr, bit);
144                 GC.KeepAlive(this);
145                 GC.KeepAlive(bit);
146                 if (ret >= 0 && ret <= 4096) { return null; }
147                 Result_NoneNoneZ ret_hu_conv = Result_NoneNoneZ.constr_from_ptr(ret);
148                 return ret_hu_conv;
149         }
150
151         /**
152          * Sets an optional custom feature bit. Errors if `bit` is outside the custom range as defined
153          * by [bLIP 2] or if it is a known `T` feature.
154          * 
155          * Note: Optional bits are odd. If an even bit is given, then the corresponding odd bit will be
156          * set instead (i.e., `bit + 1`).
157          * 
158          * [bLIP 2]: https://github.com/lightning/blips/blob/master/blip-0002.md#feature-bits
159          */
160         public Result_NoneNoneZ set_optional_custom_bit(long bit) {
161                 long ret = bindings.InvoiceRequestFeatures_set_optional_custom_bit(this.ptr, bit);
162                 GC.KeepAlive(this);
163                 GC.KeepAlive(bit);
164                 if (ret >= 0 && ret <= 4096) { return null; }
165                 Result_NoneNoneZ ret_hu_conv = Result_NoneNoneZ.constr_from_ptr(ret);
166                 return ret_hu_conv;
167         }
168
169 }
170 } } }