Update auto-generated bindings
[ldk-java] / ts / structs / UpdateFailHTLC.ts
1
2             
3 import CommonBase from './CommonBase';
4 import * as bindings from '../bindings' // TODO: figure out location
5
6
7
8             export default class UpdateFailHTLC extends CommonBase {
9                 constructor(_dummy: object, ptr: number) {
10                     super(ptr);
11                 }
12
13                 
14                 protected finalize() {
15                     super.finalize();
16
17                     if (this.ptr != 0) {
18                         bindings.UpdateFailHTLC_free(this.ptr);
19                     }
20                 }
21         public Uint8Array get_channel_id() {
22                 Uint8Array ret = bindings.UpdateFailHTLC_get_channel_id(this.ptr);
23                 return ret;
24         }
25
26         public void set_channel_id(Uint8Array val) {
27                 bindings.UpdateFailHTLC_set_channel_id(this.ptr, InternalUtils.check_arr_len(val, 32));
28         }
29
30         public number get_htlc_id() {
31                 number ret = bindings.UpdateFailHTLC_get_htlc_id(this.ptr);
32                 return ret;
33         }
34
35         public void set_htlc_id(number val) {
36                 bindings.UpdateFailHTLC_set_htlc_id(this.ptr, val);
37         }
38
39         public number clone_ptr() {
40                 number ret = bindings.UpdateFailHTLC_clone_ptr(this.ptr);
41                 return ret;
42         }
43
44         public UpdateFailHTLC clone() {
45                 number ret = bindings.UpdateFailHTLC_clone(this.ptr);
46                 const ret_hu_conv: UpdateFailHTLC = new UpdateFailHTLC(null, ret);
47                 ret_hu_conv.ptrs_to.add(this);
48                 return ret_hu_conv;
49         }
50
51         public Uint8Array write() {
52                 Uint8Array ret = bindings.UpdateFailHTLC_write(this.ptr);
53                 return ret;
54         }
55
56         public static Result_UpdateFailHTLCDecodeErrorZ constructor_read(Uint8Array ser) {
57                 number ret = bindings.UpdateFailHTLC_read(ser);
58                 Result_UpdateFailHTLCDecodeErrorZ ret_hu_conv = Result_UpdateFailHTLCDecodeErrorZ.constr_from_ptr(ret);
59                 return ret_hu_conv;
60         }
61
62 }