862a8763a093dc86e854521cdaf8293ad9f67c05
[ldk-java] / ts / structs / UpdateAddHTLC.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 UpdateAddHTLC 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.UpdateAddHTLC_free(this.ptr);
19                     }
20                 }
21         public UpdateAddHTLC clone() {
22                 number ret = bindings.UpdateAddHTLC_clone(this.ptr);
23                 const ret_hu_conv: UpdateAddHTLC = new UpdateAddHTLC(null, ret);
24                 ret_hu_conv.ptrs_to.add(this);
25                 return ret_hu_conv;
26         }
27
28         public Uint8Array get_channel_id() {
29                 Uint8Array ret = bindings.UpdateAddHTLC_get_channel_id(this.ptr);
30                 return ret;
31         }
32
33         public void set_channel_id(Uint8Array val) {
34                 bindings.UpdateAddHTLC_set_channel_id(this.ptr, val);
35         }
36
37         public number get_htlc_id() {
38                 number ret = bindings.UpdateAddHTLC_get_htlc_id(this.ptr);
39                 return ret;
40         }
41
42         public void set_htlc_id(number val) {
43                 bindings.UpdateAddHTLC_set_htlc_id(this.ptr, val);
44         }
45
46         public number get_amount_msat() {
47                 number ret = bindings.UpdateAddHTLC_get_amount_msat(this.ptr);
48                 return ret;
49         }
50
51         public void set_amount_msat(number val) {
52                 bindings.UpdateAddHTLC_set_amount_msat(this.ptr, val);
53         }
54
55         public Uint8Array get_payment_hash() {
56                 Uint8Array ret = bindings.UpdateAddHTLC_get_payment_hash(this.ptr);
57                 return ret;
58         }
59
60         public void set_payment_hash(Uint8Array val) {
61                 bindings.UpdateAddHTLC_set_payment_hash(this.ptr, val);
62         }
63
64         public number get_cltv_expiry() {
65                 number ret = bindings.UpdateAddHTLC_get_cltv_expiry(this.ptr);
66                 return ret;
67         }
68
69         public void set_cltv_expiry(number val) {
70                 bindings.UpdateAddHTLC_set_cltv_expiry(this.ptr, val);
71         }
72
73         public Uint8Array write() {
74                 Uint8Array ret = bindings.UpdateAddHTLC_write(this.ptr);
75                 return ret;
76         }
77
78         public static UpdateAddHTLC constructor_read(Uint8Array ser) {
79                 number ret = bindings.UpdateAddHTLC_read(ser);
80                 const ret_hu_conv: UpdateAddHTLC = new UpdateAddHTLC(null, ret);
81                 ret_hu_conv.ptrs_to.add(ret_hu_conv);
82                 return ret_hu_conv;
83         }
84
85 }