Update auto-generated bindings
[ldk-java] / ts / structs / UpdateFulfillHTLC.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 UpdateFulfillHTLC 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.UpdateFulfillHTLC_free(this.ptr);
19                     }
20                 }
21         public Uint8Array get_channel_id() {
22                 Uint8Array ret = bindings.UpdateFulfillHTLC_get_channel_id(this.ptr);
23                 return ret;
24         }
25
26         public void set_channel_id(Uint8Array val) {
27                 bindings.UpdateFulfillHTLC_set_channel_id(this.ptr, InternalUtils.check_arr_len(val, 32));
28         }
29
30         public number get_htlc_id() {
31                 number ret = bindings.UpdateFulfillHTLC_get_htlc_id(this.ptr);
32                 return ret;
33         }
34
35         public void set_htlc_id(number val) {
36                 bindings.UpdateFulfillHTLC_set_htlc_id(this.ptr, val);
37         }
38
39         public Uint8Array get_payment_preimage() {
40                 Uint8Array ret = bindings.UpdateFulfillHTLC_get_payment_preimage(this.ptr);
41                 return ret;
42         }
43
44         public void set_payment_preimage(Uint8Array val) {
45                 bindings.UpdateFulfillHTLC_set_payment_preimage(this.ptr, InternalUtils.check_arr_len(val, 32));
46         }
47
48         public static UpdateFulfillHTLC constructor_new(Uint8Array channel_id_arg, number htlc_id_arg, Uint8Array payment_preimage_arg) {
49                 number ret = bindings.UpdateFulfillHTLC_new(InternalUtils.check_arr_len(channel_id_arg, 32), htlc_id_arg, InternalUtils.check_arr_len(payment_preimage_arg, 32));
50                 const ret_hu_conv: UpdateFulfillHTLC = new UpdateFulfillHTLC(null, ret);
51                 ret_hu_conv.ptrs_to.add(ret_hu_conv);
52                 return ret_hu_conv;
53         }
54
55         public number clone_ptr() {
56                 number ret = bindings.UpdateFulfillHTLC_clone_ptr(this.ptr);
57                 return ret;
58         }
59
60         public UpdateFulfillHTLC clone() {
61                 number ret = bindings.UpdateFulfillHTLC_clone(this.ptr);
62                 const ret_hu_conv: UpdateFulfillHTLC = new UpdateFulfillHTLC(null, ret);
63                 ret_hu_conv.ptrs_to.add(this);
64                 return ret_hu_conv;
65         }
66
67         public Uint8Array write() {
68                 Uint8Array ret = bindings.UpdateFulfillHTLC_write(this.ptr);
69                 return ret;
70         }
71
72         public static Result_UpdateFulfillHTLCDecodeErrorZ constructor_read(Uint8Array ser) {
73                 number ret = bindings.UpdateFulfillHTLC_read(ser);
74                 Result_UpdateFulfillHTLCDecodeErrorZ ret_hu_conv = Result_UpdateFulfillHTLCDecodeErrorZ.constr_from_ptr(ret);
75                 return ret_hu_conv;
76         }
77
78 }