Bindings updates
[ldk-java] / ts / structs / DataLossProtect.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 DataLossProtect 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.DataLossProtect_free(this.ptr);
19                     }
20                 }
21         public DataLossProtect clone() {
22                 number ret = bindings.DataLossProtect_clone(this.ptr);
23                 const ret_hu_conv: DataLossProtect = new DataLossProtect(null, ret);
24                 ret_hu_conv.ptrs_to.add(this);
25                 return ret_hu_conv;
26         }
27
28         public Uint8Array get_your_last_per_commitment_secret() {
29                 Uint8Array ret = bindings.DataLossProtect_get_your_last_per_commitment_secret(this.ptr);
30                 return ret;
31         }
32
33         public void set_your_last_per_commitment_secret(Uint8Array val) {
34                 bindings.DataLossProtect_set_your_last_per_commitment_secret(this.ptr, val);
35         }
36
37         public Uint8Array get_my_current_per_commitment_point() {
38                 Uint8Array ret = bindings.DataLossProtect_get_my_current_per_commitment_point(this.ptr);
39                 return ret;
40         }
41
42         public void set_my_current_per_commitment_point(Uint8Array val) {
43                 bindings.DataLossProtect_set_my_current_per_commitment_point(this.ptr, val);
44         }
45
46         public static DataLossProtect constructor_new(Uint8Array your_last_per_commitment_secret_arg, Uint8Array my_current_per_commitment_point_arg) {
47                 number ret = bindings.DataLossProtect_new(your_last_per_commitment_secret_arg, my_current_per_commitment_point_arg);
48                 const ret_hu_conv: DataLossProtect = new DataLossProtect(null, ret);
49                 ret_hu_conv.ptrs_to.add(ret_hu_conv);
50                 return ret_hu_conv;
51         }
52
53 }