Bindings updates
[ldk-java] / ts / structs / ChannelMonitorUpdate.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 ChannelMonitorUpdate 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.ChannelMonitorUpdate_free(this.ptr);
19                     }
20                 }
21         public ChannelMonitorUpdate clone() {
22                 number ret = bindings.ChannelMonitorUpdate_clone(this.ptr);
23                 const ret_hu_conv: ChannelMonitorUpdate = new ChannelMonitorUpdate(null, ret);
24                 return ret_hu_conv;
25         }
26
27         public number get_update_id() {
28                 number ret = bindings.ChannelMonitorUpdate_get_update_id(this.ptr);
29                 return ret;
30         }
31
32         public void set_update_id(number val) {
33                 bindings.ChannelMonitorUpdate_set_update_id(this.ptr, val);
34         }
35
36         public Uint8Array write() {
37                 Uint8Array ret = bindings.ChannelMonitorUpdate_write(this.ptr);
38                 return ret;
39         }
40
41         public static Result_ChannelMonitorUpdateDecodeErrorZ constructor_read(Uint8Array ser) {
42                 number ret = bindings.ChannelMonitorUpdate_read(ser);
43                 Result_ChannelMonitorUpdateDecodeErrorZ ret_hu_conv = Result_ChannelMonitorUpdateDecodeErrorZ.constr_from_ptr(ret);
44                 return ret_hu_conv;
45         }
46
47 }