Update auto-generated bindings
[ldk-java] / ts / structs / TwoTuple_OutPointScriptZ.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_OutPointScriptZ 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_OutPointScriptZ_free(this.ptr);
19                     }
20                 }
21         public OutPoint get_a() {
22                 number ret = bindings.C2Tuple_OutPointScriptZ_get_a(this.ptr);
23                 const ret_hu_conv: OutPoint = new OutPoint(null, ret);
24                 ret_hu_conv.ptrs_to.add(this);
25                 return ret_hu_conv;
26         }
27
28         public Uint8Array get_b() {
29                 Uint8Array ret = bindings.C2Tuple_OutPointScriptZ_get_b(this.ptr);
30                 return ret;
31         }
32
33         public TwoTuple_OutPointScriptZ clone() {
34                 number ret = bindings.C2Tuple_OutPointScriptZ_clone(this.ptr);
35                 TwoTuple_OutPointScriptZ ret_hu_conv = new TwoTuple_OutPointScriptZ(null, ret);
36                 ret_hu_conv.ptrs_to.add(this);
37                 return ret_hu_conv;
38         }
39
40         public static TwoTuple_OutPointScriptZ constructor_new(OutPoint a, Uint8Array b) {
41                 number ret = bindings.C2Tuple_OutPointScriptZ_new(a == null ? 0 : a.ptr & ~1, b);
42                 TwoTuple_OutPointScriptZ ret_hu_conv = new TwoTuple_OutPointScriptZ(null, ret);
43                 ret_hu_conv.ptrs_to.add(ret_hu_conv);
44                 ret_hu_conv.ptrs_to.add(a);
45                 return ret_hu_conv;
46         }
47
48 }