Bindings updates
[ldk-java] / ts / structs / OutPoint.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 OutPoint 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.OutPoint_free(this.ptr);
19                     }
20                 }
21         public OutPoint clone() {
22                 number ret = bindings.OutPoint_clone(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_txid() {
29                 Uint8Array ret = bindings.OutPoint_get_txid(this.ptr);
30                 return ret;
31         }
32
33         public void set_txid(Uint8Array val) {
34                 bindings.OutPoint_set_txid(this.ptr, val);
35         }
36
37         public number get_index() {
38                 number ret = bindings.OutPoint_get_index(this.ptr);
39                 return ret;
40         }
41
42         public void set_index(number val) {
43                 bindings.OutPoint_set_index(this.ptr, val);
44         }
45
46         public static OutPoint constructor_new(Uint8Array txid_arg, number index_arg) {
47                 number ret = bindings.OutPoint_new(txid_arg, index_arg);
48                 const ret_hu_conv: OutPoint = new OutPoint(null, ret);
49                 ret_hu_conv.ptrs_to.add(ret_hu_conv);
50                 return ret_hu_conv;
51         }
52
53         public Uint8Array to_channel_id() {
54                 Uint8Array ret = bindings.OutPoint_to_channel_id(this.ptr);
55                 return ret;
56         }
57
58         public Uint8Array write() {
59                 Uint8Array ret = bindings.OutPoint_write(this.ptr);
60                 return ret;
61         }
62
63         public static OutPoint constructor_read(Uint8Array ser) {
64                 number ret = bindings.OutPoint_read(ser);
65                 const ret_hu_conv: OutPoint = new OutPoint(null, ret);
66                 ret_hu_conv.ptrs_to.add(ret_hu_conv);
67                 return ret_hu_conv;
68         }
69
70 }