Bindings updates
[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 UpdateFailHTLC clone() {
22                 number ret = bindings.UpdateFailHTLC_clone(this.ptr);
23                 const ret_hu_conv: UpdateFailHTLC = new UpdateFailHTLC(null, ret);
24                 return ret_hu_conv;
25         }
26
27         public Uint8Array get_channel_id() {
28                 Uint8Array ret = bindings.UpdateFailHTLC_get_channel_id(this.ptr);
29                 return ret;
30         }
31
32         public void set_channel_id(Uint8Array val) {
33                 bindings.UpdateFailHTLC_set_channel_id(this.ptr, val);
34         }
35
36         public number get_htlc_id() {
37                 number ret = bindings.UpdateFailHTLC_get_htlc_id(this.ptr);
38                 return ret;
39         }
40
41         public void set_htlc_id(number val) {
42                 bindings.UpdateFailHTLC_set_htlc_id(this.ptr, val);
43         }
44
45         public Uint8Array write() {
46                 Uint8Array ret = bindings.UpdateFailHTLC_write(this.ptr);
47                 return ret;
48         }
49
50         public static UpdateFailHTLC constructor_read(Uint8Array ser) {
51                 number ret = bindings.UpdateFailHTLC_read(ser);
52                 const ret_hu_conv: UpdateFailHTLC = new UpdateFailHTLC(null, ret);
53                 return ret_hu_conv;
54         }
55
56 }