[C#] Update auto-generated files
[ldk-java] / c_sharp / src / org / ldk / structs / InvoiceRequestFeatures.cs
index db8292ddca2c263e3ec8ae1b51124290034e8dea..dfad8e8522c4399de65b69278eec4ebdccb7dcdc 100644 (file)
@@ -61,6 +61,17 @@ public class InvoiceRequestFeatures : CommonBase {
                return ret_hu_conv;
        }
 
+       /**
+        * Returns true if this `Features` object contains required features unknown by `other`.
+        */
+       public bool requires_unknown_bits_from(org.ldk.structs.InvoiceRequestFeatures other) {
+               bool ret = bindings.InvoiceRequestFeatures_requires_unknown_bits_from(this.ptr, other == null ? 0 : other.ptr);
+               GC.KeepAlive(this);
+               GC.KeepAlive(other);
+               if (this != null) { this.ptrs_to.AddLast(other); };
+               return ret;
+       }
+
        /**
         * Returns true if this `Features` object contains unknown feature flags which are set as
         * \"required\".
@@ -72,22 +83,38 @@ public class InvoiceRequestFeatures : CommonBase {
        }
 
        /**
-        * Serialize the InvoiceRequestFeatures object into a byte array which can be read by InvoiceRequestFeatures_read
+        * Sets a required custom feature bit. Errors if `bit` is outside the custom range as defined
+        * by [bLIP 2] or if it is a known `T` feature.
+        * 
+        * Note: Required bits are even. If an odd bit is given, then the corresponding even bit will
+        * be set instead (i.e., `bit - 1`).
+        * 
+        * [bLIP 2]: https://github.com/lightning/blips/blob/master/blip-0002.md#feature-bits
         */
-       public byte[] write() {
-               byte[] ret = bindings.InvoiceRequestFeatures_write(this.ptr);
+       public Result_NoneNoneZ set_required_custom_bit(long bit) {
+               long ret = bindings.InvoiceRequestFeatures_set_required_custom_bit(this.ptr, bit);
                GC.KeepAlive(this);
-               return ret;
+               GC.KeepAlive(bit);
+               if (ret >= 0 && ret <= 4096) { return null; }
+               Result_NoneNoneZ ret_hu_conv = Result_NoneNoneZ.constr_from_ptr(ret);
+               return ret_hu_conv;
        }
 
        /**
-        * Read a InvoiceRequestFeatures from a byte array, created by InvoiceRequestFeatures_write
+        * Sets an optional custom feature bit. Errors if `bit` is outside the custom range as defined
+        * by [bLIP 2] or if it is a known `T` feature.
+        * 
+        * Note: Optional bits are odd. If an even bit is given, then the corresponding odd bit will be
+        * set instead (i.e., `bit + 1`).
+        * 
+        * [bLIP 2]: https://github.com/lightning/blips/blob/master/blip-0002.md#feature-bits
         */
-       public static Result_InvoiceRequestFeaturesDecodeErrorZ read(byte[] ser) {
-               long ret = bindings.InvoiceRequestFeatures_read(ser);
-               GC.KeepAlive(ser);
+       public Result_NoneNoneZ set_optional_custom_bit(long bit) {
+               long ret = bindings.InvoiceRequestFeatures_set_optional_custom_bit(this.ptr, bit);
+               GC.KeepAlive(this);
+               GC.KeepAlive(bit);
                if (ret >= 0 && ret <= 4096) { return null; }
-               Result_InvoiceRequestFeaturesDecodeErrorZ ret_hu_conv = Result_InvoiceRequestFeaturesDecodeErrorZ.constr_from_ptr(ret);
+               Result_NoneNoneZ ret_hu_conv = Result_NoneNoneZ.constr_from_ptr(ret);
                return ret_hu_conv;
        }