Update auto-generated bindings
[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 Uint8Array get_txid() {
22                 Uint8Array ret = bindings.OutPoint_get_txid(this.ptr);
23                 return ret;
24         }
25
26         public void set_txid(Uint8Array val) {
27                 bindings.OutPoint_set_txid(this.ptr, val);
28         }
29
30         public number get_index() {
31                 number ret = bindings.OutPoint_get_index(this.ptr);
32                 return ret;
33         }
34
35         public void set_index(number val) {
36                 bindings.OutPoint_set_index(this.ptr, val);
37         }
38
39         public static OutPoint constructor_new(Uint8Array txid_arg, number index_arg) {
40                 number ret = bindings.OutPoint_new(txid_arg, index_arg);
41                 const ret_hu_conv: OutPoint = new OutPoint(null, ret);
42                 ret_hu_conv.ptrs_to.add(ret_hu_conv);
43                 return ret_hu_conv;
44         }
45
46         public OutPoint clone() {
47                 number ret = bindings.OutPoint_clone(this.ptr);
48                 const ret_hu_conv: OutPoint = new OutPoint(null, ret);
49                 ret_hu_conv.ptrs_to.add(this);
50                 return ret_hu_conv;
51         }
52
53         public boolean eq(OutPoint b) {
54                 boolean ret = bindings.OutPoint_eq(this.ptr, b == null ? 0 : b.ptr & ~1);
55                 this.ptrs_to.add(b);
56                 return ret;
57         }
58
59         public number hash() {
60                 number ret = bindings.OutPoint_hash(this.ptr);
61                 return ret;
62         }
63
64         public Uint8Array to_channel_id() {
65                 Uint8Array ret = bindings.OutPoint_to_channel_id(this.ptr);
66                 return ret;
67         }
68
69         public Uint8Array write() {
70                 Uint8Array ret = bindings.OutPoint_write(this.ptr);
71                 return ret;
72         }
73
74         public static Result_OutPointDecodeErrorZ constructor_read(Uint8Array ser) {
75                 number ret = bindings.OutPoint_read(ser);
76                 Result_OutPointDecodeErrorZ ret_hu_conv = Result_OutPointDecodeErrorZ.constr_from_ptr(ret);
77                 return ret_hu_conv;
78         }
79
80 }