6 namespace org { namespace ldk { namespace structs {
10 * Features used within an `offer`.
12 public class OfferFeatures : CommonBase {
13 internal OfferFeatures(object _dummy, long ptr) : base(ptr) { }
15 if (ptr != 0) { bindings.OfferFeatures_free(ptr); }
19 * Checks if two OfferFeaturess 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.
23 public bool eq(org.ldk.structs.OfferFeatures b) {
24 bool ret = bindings.OfferFeatures_eq(this.ptr, b == null ? 0 : b.ptr);
27 if (this != null) { this.ptrs_to.AddLast(b); };
31 public override bool Equals(object o) {
32 if (!(o is OfferFeatures)) return false;
33 return this.eq((OfferFeatures)o);
35 internal long clone_ptr() {
36 long ret = bindings.OfferFeatures_clone_ptr(this.ptr);
42 * Creates a copy of the OfferFeatures
44 public OfferFeatures clone() {
45 long ret = bindings.OfferFeatures_clone(this.ptr);
47 if (ret >= 0 && ret <= 4096) { return null; }
48 org.ldk.structs.OfferFeatures ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new org.ldk.structs.OfferFeatures(null, ret); }
49 if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.AddLast(this); };
54 * Create a blank Features with no features set
56 public static OfferFeatures empty() {
57 long ret = bindings.OfferFeatures_empty();
58 if (ret >= 0 && ret <= 4096) { return null; }
59 org.ldk.structs.OfferFeatures ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new org.ldk.structs.OfferFeatures(null, ret); }
60 if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.AddLast(ret_hu_conv); };
65 * Returns true if this `Features` object contains required features unknown by `other`.
67 public bool requires_unknown_bits_from(org.ldk.structs.OfferFeatures other) {
68 bool ret = bindings.OfferFeatures_requires_unknown_bits_from(this.ptr, other == null ? 0 : other.ptr);
71 if (this != null) { this.ptrs_to.AddLast(other); };
76 * Returns true if this `Features` object contains unknown feature flags which are set as
79 public bool requires_unknown_bits() {
80 bool ret = bindings.OfferFeatures_requires_unknown_bits(this.ptr);
86 * Sets a required custom feature bit. Errors if `bit` is outside the custom range as defined
87 * by [bLIP 2] or if it is a known `T` feature.
89 * Note: Required bits are even. If an odd bit is given, then the corresponding even bit will
90 * be set instead (i.e., `bit - 1`).
92 * [bLIP 2]: https://github.com/lightning/blips/blob/master/blip-0002.md#feature-bits
94 public Result_NoneNoneZ set_required_custom_bit(long bit) {
95 long ret = bindings.OfferFeatures_set_required_custom_bit(this.ptr, bit);
98 if (ret >= 0 && ret <= 4096) { return null; }
99 Result_NoneNoneZ ret_hu_conv = Result_NoneNoneZ.constr_from_ptr(ret);
104 * Sets an optional custom feature bit. Errors if `bit` is outside the custom range as defined
105 * by [bLIP 2] or if it is a known `T` feature.
107 * Note: Optional bits are odd. If an even bit is given, then the corresponding odd bit will be
108 * set instead (i.e., `bit + 1`).
110 * [bLIP 2]: https://github.com/lightning/blips/blob/master/blip-0002.md#feature-bits
112 public Result_NoneNoneZ set_optional_custom_bit(long bit) {
113 long ret = bindings.OfferFeatures_set_optional_custom_bit(this.ptr, bit);
116 if (ret >= 0 && ret <= 4096) { return null; }
117 Result_NoneNoneZ ret_hu_conv = Result_NoneNoneZ.constr_from_ptr(ret);