Update auto-generated bindings
[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 Uint8Array get_your_last_per_commitment_secret() {
22                 Uint8Array ret = bindings.DataLossProtect_get_your_last_per_commitment_secret(this.ptr);
23                 return ret;
24         }
25
26         public void set_your_last_per_commitment_secret(Uint8Array val) {
27                 bindings.DataLossProtect_set_your_last_per_commitment_secret(this.ptr, InternalUtils.check_arr_len(val, 32));
28         }
29
30         public Uint8Array get_my_current_per_commitment_point() {
31                 Uint8Array ret = bindings.DataLossProtect_get_my_current_per_commitment_point(this.ptr);
32                 return ret;
33         }
34
35         public void set_my_current_per_commitment_point(Uint8Array val) {
36                 bindings.DataLossProtect_set_my_current_per_commitment_point(this.ptr, InternalUtils.check_arr_len(val, 33));
37         }
38
39         public static DataLossProtect constructor_new(Uint8Array your_last_per_commitment_secret_arg, Uint8Array my_current_per_commitment_point_arg) {
40                 number ret = bindings.DataLossProtect_new(InternalUtils.check_arr_len(your_last_per_commitment_secret_arg, 32), InternalUtils.check_arr_len(my_current_per_commitment_point_arg, 33));
41                 const ret_hu_conv: DataLossProtect = new DataLossProtect(null, ret);
42                 ret_hu_conv.ptrs_to.add(ret_hu_conv);
43                 return ret_hu_conv;
44         }
45
46         public number clone_ptr() {
47                 number ret = bindings.DataLossProtect_clone_ptr(this.ptr);
48                 return ret;
49         }
50
51         public DataLossProtect clone() {
52                 number ret = bindings.DataLossProtect_clone(this.ptr);
53                 const ret_hu_conv: DataLossProtect = new DataLossProtect(null, ret);
54                 ret_hu_conv.ptrs_to.add(this);
55                 return ret_hu_conv;
56         }
57
58 }