Update to support None
[ldk-java] / src / main / java / org / ldk / structs / QueryShortChannelIds.java
1 package org.ldk.structs;
2
3 import org.ldk.impl.bindings;
4 import org.ldk.enums.*;
5
6 public class QueryShortChannelIds extends CommonBase {
7         QueryShortChannelIds(Object _dummy, long ptr) { super(ptr); }
8         @Override @SuppressWarnings("deprecation")
9         protected void finalize() throws Throwable {
10                 bindings.QueryShortChannelIds_free(ptr); super.finalize();
11         }
12
13         public QueryShortChannelIds(QueryShortChannelIds orig) {
14                 super(bindings.QueryShortChannelIds_clone(orig == null ? 0 : orig.ptr & ~1));
15                 this.ptrs_to.add(orig);
16         }
17
18         public byte[] get_chain_hash(QueryShortChannelIds this_ptr) {
19                 byte[] ret = bindings.QueryShortChannelIds_get_chain_hash(this_ptr == null ? 0 : this_ptr.ptr & ~1);
20                 this.ptrs_to.add(this_ptr);
21                 return ret;
22         }
23
24         public void set_chain_hash(QueryShortChannelIds this_ptr, byte[] val) {
25                 bindings.QueryShortChannelIds_set_chain_hash(this_ptr == null ? 0 : this_ptr.ptr & ~1, val);
26                 this.ptrs_to.add(this_ptr);
27         }
28
29         // Skipped QueryShortChannelIds_set_short_channel_ids
30         // Skipped QueryShortChannelIds_new
31         public QueryShortChannelIds(byte[] ser) {
32                 super(bindings.QueryShortChannelIds_read(ser));
33         }
34
35         // Skipped QueryShortChannelIds_write
36 }