Update auto-generated bindings
[ldk-java] / ts / structs / TwoTuple_PublicKeyTypeZ.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 C2Tuple_PublicKeyTypeZ 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.C2Tuple_PublicKeyTypeZ_free(this.ptr);
19                     }
20                 }
21         public Uint8Array get_a() {
22                 Uint8Array ret = bindings.C2Tuple_PublicKeyTypeZ_get_a(this.ptr);
23                 return ret;
24         }
25
26         public Type get_b() {
27                 number ret = bindings.C2Tuple_PublicKeyTypeZ_get_b(this.ptr);
28                 Type ret_hu_conv = new Type(null, ret);
29                 ret_hu_conv.ptrs_to.add(this);
30                 return ret_hu_conv;
31         }
32
33         public number clone_ptr() {
34                 number ret = bindings.C2Tuple_PublicKeyTypeZ_clone_ptr(this.ptr);
35                 return ret;
36         }
37
38         public TwoTuple_PublicKeyTypeZ clone() {
39                 number ret = bindings.C2Tuple_PublicKeyTypeZ_clone(this.ptr);
40                 TwoTuple_PublicKeyTypeZ ret_hu_conv = new TwoTuple_PublicKeyTypeZ(null, ret);
41                 ret_hu_conv.ptrs_to.add(this);
42                 return ret_hu_conv;
43         }
44
45         public static TwoTuple_PublicKeyTypeZ constructor_new(Uint8Array a, Type b) {
46                 number ret = bindings.C2Tuple_PublicKeyTypeZ_new(InternalUtils.check_arr_len(a, 33), b == null ? 0 : b.ptr);
47                 TwoTuple_PublicKeyTypeZ ret_hu_conv = new TwoTuple_PublicKeyTypeZ(null, ret);
48                 ret_hu_conv.ptrs_to.add(ret_hu_conv);
49                 ret_hu_conv.ptrs_to.add(b);
50                 return ret_hu_conv;
51         }
52
53 }