TS bindings
[ldk-java] / ts / structs / UpdateFailHTLC.ts
diff --git a/ts/structs/UpdateFailHTLC.ts b/ts/structs/UpdateFailHTLC.ts
new file mode 100644 (file)
index 0000000..7b39c35
--- /dev/null
@@ -0,0 +1,48 @@
+
+import CommonBase from './CommonBase';
+import * as bindings from '../bindings' // TODO: figure out location
+
+public class UpdateFailHTLC extends CommonBase {
+       UpdateFailHTLC(Object _dummy, long ptr) { super(ptr); }
+       @Override @SuppressWarnings("deprecation")
+       protected void finalize() throws Throwable {
+               super.finalize();
+               if (ptr != 0) { bindings.UpdateFailHTLC_free(ptr); }
+       }
+
+       public UpdateFailHTLC clone() {
+               uint32_t ret = bindings.UpdateFailHTLC_clone(this.ptr);
+               UpdateFailHTLC ret_hu_conv = new UpdateFailHTLC(null, ret);
+               return ret_hu_conv;
+       }
+
+       public byte[] get_channel_id() {
+               byte[] ret = bindings.UpdateFailHTLC_get_channel_id(this.ptr);
+               return ret;
+       }
+
+       public void set_channel_id(byte[] val) {
+               bindings.UpdateFailHTLC_set_channel_id(this.ptr, val);
+       }
+
+       public long get_htlc_id() {
+               long ret = bindings.UpdateFailHTLC_get_htlc_id(this.ptr);
+               return ret;
+       }
+
+       public void set_htlc_id(long val) {
+               bindings.UpdateFailHTLC_set_htlc_id(this.ptr, val);
+       }
+
+       public byte[] write() {
+               byte[] ret = bindings.UpdateFailHTLC_write(this.ptr);
+               return ret;
+       }
+
+       public static UpdateFailHTLC constructor_read(byte[] ser) {
+               uint32_t ret = bindings.UpdateFailHTLC_read(ser);
+               UpdateFailHTLC ret_hu_conv = new UpdateFailHTLC(null, ret);
+               return ret_hu_conv;
+       }
+
+}