X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=ts%2Fstructs%2FUpdateAddHTLC.ts;h=52c5ed48199a19a25a176f85656e0c6f47970457;hb=22f5f4208b1f3b5542292250f1612b944f5cd7fd;hp=450aae3b1f043acc50a06db4dd0fc44cd55db5d5;hpb=56e9910ffaa7fccf2cb777dc9cf55e01a9681543;p=ldk-java diff --git a/ts/structs/UpdateAddHTLC.ts b/ts/structs/UpdateAddHTLC.ts index 450aae3b..52c5ed48 100644 --- a/ts/structs/UpdateAddHTLC.ts +++ b/ts/structs/UpdateAddHTLC.ts @@ -1,74 +1,82 @@ + import CommonBase from './CommonBase'; import * as bindings from '../bindings' // TODO: figure out location -public class UpdateAddHTLC extends CommonBase { - UpdateAddHTLC(Object _dummy, long ptr) { super(ptr); } - @Override @SuppressWarnings("deprecation") - protected void finalize() throws Throwable { - super.finalize(); - if (ptr != 0) { bindings.UpdateAddHTLC_free(ptr); } - } + + export default class UpdateAddHTLC extends CommonBase { + constructor(_dummy: object, ptr: number) { + super(ptr); + } + + + protected finalize() { + super.finalize(); + + if (this.ptr != 0) { + bindings.UpdateAddHTLC_free(this.ptr); + } + } public UpdateAddHTLC clone() { - uint32_t ret = bindings.UpdateAddHTLC_clone(this.ptr); - UpdateAddHTLC ret_hu_conv = new UpdateAddHTLC(null, ret); + number ret = bindings.UpdateAddHTLC_clone(this.ptr); + const ret_hu_conv: UpdateAddHTLC = new UpdateAddHTLC(null, ret); return ret_hu_conv; } - public byte[] get_channel_id() { - byte[] ret = bindings.UpdateAddHTLC_get_channel_id(this.ptr); + public Uint8Array get_channel_id() { + Uint8Array ret = bindings.UpdateAddHTLC_get_channel_id(this.ptr); return ret; } - public void set_channel_id(byte[] val) { + public void set_channel_id(Uint8Array val) { bindings.UpdateAddHTLC_set_channel_id(this.ptr, val); } - public long get_htlc_id() { - long ret = bindings.UpdateAddHTLC_get_htlc_id(this.ptr); + public number get_htlc_id() { + number ret = bindings.UpdateAddHTLC_get_htlc_id(this.ptr); return ret; } - public void set_htlc_id(long val) { + public void set_htlc_id(number val) { bindings.UpdateAddHTLC_set_htlc_id(this.ptr, val); } - public long get_amount_msat() { - long ret = bindings.UpdateAddHTLC_get_amount_msat(this.ptr); + public number get_amount_msat() { + number ret = bindings.UpdateAddHTLC_get_amount_msat(this.ptr); return ret; } - public void set_amount_msat(long val) { + public void set_amount_msat(number val) { bindings.UpdateAddHTLC_set_amount_msat(this.ptr, val); } - public byte[] get_payment_hash() { - byte[] ret = bindings.UpdateAddHTLC_get_payment_hash(this.ptr); + public Uint8Array get_payment_hash() { + Uint8Array ret = bindings.UpdateAddHTLC_get_payment_hash(this.ptr); return ret; } - public void set_payment_hash(byte[] val) { + public void set_payment_hash(Uint8Array val) { bindings.UpdateAddHTLC_set_payment_hash(this.ptr, val); } - public int get_cltv_expiry() { - int ret = bindings.UpdateAddHTLC_get_cltv_expiry(this.ptr); + public number get_cltv_expiry() { + number ret = bindings.UpdateAddHTLC_get_cltv_expiry(this.ptr); return ret; } - public void set_cltv_expiry(int val) { + public void set_cltv_expiry(number val) { bindings.UpdateAddHTLC_set_cltv_expiry(this.ptr, val); } - public byte[] write() { - byte[] ret = bindings.UpdateAddHTLC_write(this.ptr); + public Uint8Array write() { + Uint8Array ret = bindings.UpdateAddHTLC_write(this.ptr); return ret; } - public static UpdateAddHTLC constructor_read(byte[] ser) { - uint32_t ret = bindings.UpdateAddHTLC_read(ser); - UpdateAddHTLC ret_hu_conv = new UpdateAddHTLC(null, ret); + public static UpdateAddHTLC constructor_read(Uint8Array ser) { + number ret = bindings.UpdateAddHTLC_read(ser); + const ret_hu_conv: UpdateAddHTLC = new UpdateAddHTLC(null, ret); return ret_hu_conv; }