3 import CommonBase from './CommonBase';
4 import * as bindings from '../bindings' // TODO: figure out location
8 export default class UpdateFailHTLC extends CommonBase {
9 constructor(_dummy: object, ptr: number) {
14 protected finalize() {
18 bindings.UpdateFailHTLC_free(this.ptr);
21 public Uint8Array get_channel_id() {
22 Uint8Array ret = bindings.UpdateFailHTLC_get_channel_id(this.ptr);
26 public void set_channel_id(Uint8Array val) {
27 bindings.UpdateFailHTLC_set_channel_id(this.ptr, val);
30 public number get_htlc_id() {
31 number ret = bindings.UpdateFailHTLC_get_htlc_id(this.ptr);
35 public void set_htlc_id(number val) {
36 bindings.UpdateFailHTLC_set_htlc_id(this.ptr, val);
39 public UpdateFailHTLC clone() {
40 number ret = bindings.UpdateFailHTLC_clone(this.ptr);
41 const ret_hu_conv: UpdateFailHTLC = new UpdateFailHTLC(null, ret);
42 ret_hu_conv.ptrs_to.add(this);
46 public Uint8Array write() {
47 Uint8Array ret = bindings.UpdateFailHTLC_write(this.ptr);
51 public static Result_UpdateFailHTLCDecodeErrorZ constructor_read(Uint8Array ser) {
52 number ret = bindings.UpdateFailHTLC_read(ser);
53 Result_UpdateFailHTLCDecodeErrorZ ret_hu_conv = Result_UpdateFailHTLCDecodeErrorZ.constr_from_ptr(ret);