Update auto-generated bindings
[ldk-java] / ts / structs / HTLCUpdate.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 HTLCUpdate 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.HTLCUpdate_free(this.ptr);
19                     }
20                 }
21         public number clone_ptr() {
22                 number ret = bindings.HTLCUpdate_clone_ptr(this.ptr);
23                 return ret;
24         }
25
26         public HTLCUpdate clone() {
27                 number ret = bindings.HTLCUpdate_clone(this.ptr);
28                 const ret_hu_conv: HTLCUpdate = new HTLCUpdate(null, ret);
29                 ret_hu_conv.ptrs_to.add(this);
30                 return ret_hu_conv;
31         }
32
33         public Uint8Array write() {
34                 Uint8Array ret = bindings.HTLCUpdate_write(this.ptr);
35                 return ret;
36         }
37
38         public static Result_HTLCUpdateDecodeErrorZ constructor_read(Uint8Array ser) {
39                 number ret = bindings.HTLCUpdate_read(ser);
40                 Result_HTLCUpdateDecodeErrorZ ret_hu_conv = Result_HTLCUpdateDecodeErrorZ.constr_from_ptr(ret);
41                 return ret_hu_conv;
42         }
43
44 }