TS bindings
[ldk-java] / ts / structs / ChannelInfo.ts
diff --git a/ts/structs/ChannelInfo.ts b/ts/structs/ChannelInfo.ts
new file mode 100644 (file)
index 0000000..4aaf250
--- /dev/null
@@ -0,0 +1,86 @@
+
+import CommonBase from './CommonBase';
+import * as bindings from '../bindings' // TODO: figure out location
+
+public class ChannelInfo extends CommonBase {
+       ChannelInfo(Object _dummy, long ptr) { super(ptr); }
+       @Override @SuppressWarnings("deprecation")
+       protected void finalize() throws Throwable {
+               super.finalize();
+               if (ptr != 0) { bindings.ChannelInfo_free(ptr); }
+       }
+
+       public ChannelFeatures get_features() {
+               uint32_t ret = bindings.ChannelInfo_get_features(this.ptr);
+               ChannelFeatures ret_hu_conv = new ChannelFeatures(null, ret);
+               return ret_hu_conv;
+       }
+
+       public void set_features(ChannelFeatures val) {
+               bindings.ChannelInfo_set_features(this.ptr, val == null ? 0 : val.ptr & ~1);
+               this.ptrs_to.add(val);
+       }
+
+       public byte[] get_node_one() {
+               byte[] ret = bindings.ChannelInfo_get_node_one(this.ptr);
+               return ret;
+       }
+
+       public void set_node_one(byte[] val) {
+               bindings.ChannelInfo_set_node_one(this.ptr, val);
+       }
+
+       public DirectionalChannelInfo get_one_to_two() {
+               uint32_t ret = bindings.ChannelInfo_get_one_to_two(this.ptr);
+               DirectionalChannelInfo ret_hu_conv = new DirectionalChannelInfo(null, ret);
+               return ret_hu_conv;
+       }
+
+       public void set_one_to_two(DirectionalChannelInfo val) {
+               bindings.ChannelInfo_set_one_to_two(this.ptr, val == null ? 0 : val.ptr & ~1);
+               this.ptrs_to.add(val);
+       }
+
+       public byte[] get_node_two() {
+               byte[] ret = bindings.ChannelInfo_get_node_two(this.ptr);
+               return ret;
+       }
+
+       public void set_node_two(byte[] val) {
+               bindings.ChannelInfo_set_node_two(this.ptr, val);
+       }
+
+       public DirectionalChannelInfo get_two_to_one() {
+               uint32_t ret = bindings.ChannelInfo_get_two_to_one(this.ptr);
+               DirectionalChannelInfo ret_hu_conv = new DirectionalChannelInfo(null, ret);
+               return ret_hu_conv;
+       }
+
+       public void set_two_to_one(DirectionalChannelInfo val) {
+               bindings.ChannelInfo_set_two_to_one(this.ptr, val == null ? 0 : val.ptr & ~1);
+               this.ptrs_to.add(val);
+       }
+
+       public ChannelAnnouncement get_announcement_message() {
+               uint32_t ret = bindings.ChannelInfo_get_announcement_message(this.ptr);
+               ChannelAnnouncement ret_hu_conv = new ChannelAnnouncement(null, ret);
+               return ret_hu_conv;
+       }
+
+       public void set_announcement_message(ChannelAnnouncement val) {
+               bindings.ChannelInfo_set_announcement_message(this.ptr, val == null ? 0 : val.ptr & ~1);
+               this.ptrs_to.add(val);
+       }
+
+       public byte[] write() {
+               byte[] ret = bindings.ChannelInfo_write(this.ptr);
+               return ret;
+       }
+
+       public static ChannelInfo constructor_read(byte[] ser) {
+               uint32_t ret = bindings.ChannelInfo_read(ser);
+               ChannelInfo ret_hu_conv = new ChannelInfo(null, ret);
+               return ret_hu_conv;
+       }
+
+}