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                 return ret_hu_conv;
25         }
26
27         public Uint8Array get_your_last_per_commitment_secret() {
28                 Uint8Array ret = bindings.DataLossProtect_get_your_last_per_commitment_secret(this.ptr);
29                 return ret;
30         }
31
32         public void set_your_last_per_commitment_secret(Uint8Array val) {
33                 bindings.DataLossProtect_set_your_last_per_commitment_secret(this.ptr, val);
34         }
35
36         public Uint8Array get_my_current_per_commitment_point() {
37                 Uint8Array ret = bindings.DataLossProtect_get_my_current_per_commitment_point(this.ptr);
38                 return ret;
39         }
40
41         public void set_my_current_per_commitment_point(Uint8Array val) {
42                 bindings.DataLossProtect_set_my_current_per_commitment_point(this.ptr, val);
43         }
44
45         public static DataLossProtect constructor_new(Uint8Array your_last_per_commitment_secret_arg, Uint8Array my_current_per_commitment_point_arg) {
46                 number ret = bindings.DataLossProtect_new(your_last_per_commitment_secret_arg, my_current_per_commitment_point_arg);
47                 const ret_hu_conv: DataLossProtect = new DataLossProtect(null, ret);
48                 return ret_hu_conv;
49         }
50
51 }