Update auto-generated bindings
[ldk-java] / ts / structs / Ping.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 Ping 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.Ping_free(this.ptr);
19                     }
20                 }
21         public number get_ponglen() {
22                 number ret = bindings.Ping_get_ponglen(this.ptr);
23                 return ret;
24         }
25
26         public void set_ponglen(number val) {
27                 bindings.Ping_set_ponglen(this.ptr, val);
28         }
29
30         public number get_byteslen() {
31                 number ret = bindings.Ping_get_byteslen(this.ptr);
32                 return ret;
33         }
34
35         public void set_byteslen(number val) {
36                 bindings.Ping_set_byteslen(this.ptr, val);
37         }
38
39         public static Ping constructor_new(number ponglen_arg, number byteslen_arg) {
40                 number ret = bindings.Ping_new(ponglen_arg, byteslen_arg);
41                 const ret_hu_conv: Ping = new Ping(null, ret);
42                 ret_hu_conv.ptrs_to.add(ret_hu_conv);
43                 return ret_hu_conv;
44         }
45
46         public number clone_ptr() {
47                 number ret = bindings.Ping_clone_ptr(this.ptr);
48                 return ret;
49         }
50
51         public Ping clone() {
52                 number ret = bindings.Ping_clone(this.ptr);
53                 const ret_hu_conv: Ping = new Ping(null, ret);
54                 ret_hu_conv.ptrs_to.add(this);
55                 return ret_hu_conv;
56         }
57
58         public Uint8Array write() {
59                 Uint8Array ret = bindings.Ping_write(this.ptr);
60                 return ret;
61         }
62
63         public static Result_PingDecodeErrorZ constructor_read(Uint8Array ser) {
64                 number ret = bindings.Ping_read(ser);
65                 Result_PingDecodeErrorZ ret_hu_conv = Result_PingDecodeErrorZ.constr_from_ptr(ret);
66                 return ret_hu_conv;
67         }
68
69 }