Update auto-generated bindings
[ldk-java] / ts / structs / DelayedPaymentOutputDescriptor.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 DelayedPaymentOutputDescriptor 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.DelayedPaymentOutputDescriptor_free(this.ptr);
19                     }
20                 }
21         public OutPoint get_outpoint() {
22                 number ret = bindings.DelayedPaymentOutputDescriptor_get_outpoint(this.ptr);
23                 const ret_hu_conv: OutPoint = new OutPoint(null, ret);
24                 ret_hu_conv.ptrs_to.add(this);
25                 return ret_hu_conv;
26         }
27
28         public void set_outpoint(OutPoint val) {
29                 bindings.DelayedPaymentOutputDescriptor_set_outpoint(this.ptr, val == null ? 0 : val.ptr & ~1);
30         }
31
32         public Uint8Array get_per_commitment_point() {
33                 Uint8Array ret = bindings.DelayedPaymentOutputDescriptor_get_per_commitment_point(this.ptr);
34                 return ret;
35         }
36
37         public void set_per_commitment_point(Uint8Array val) {
38                 bindings.DelayedPaymentOutputDescriptor_set_per_commitment_point(this.ptr, val);
39         }
40
41         public number get_to_self_delay() {
42                 number ret = bindings.DelayedPaymentOutputDescriptor_get_to_self_delay(this.ptr);
43                 return ret;
44         }
45
46         public void set_to_self_delay(number val) {
47                 bindings.DelayedPaymentOutputDescriptor_set_to_self_delay(this.ptr, val);
48         }
49
50         public void set_output(TxOut val) {
51                 bindings.DelayedPaymentOutputDescriptor_set_output(this.ptr, val.ptr);
52         }
53
54         public Uint8Array get_revocation_pubkey() {
55                 Uint8Array ret = bindings.DelayedPaymentOutputDescriptor_get_revocation_pubkey(this.ptr);
56                 return ret;
57         }
58
59         public void set_revocation_pubkey(Uint8Array val) {
60                 bindings.DelayedPaymentOutputDescriptor_set_revocation_pubkey(this.ptr, val);
61         }
62
63         public Uint8Array get_channel_keys_id() {
64                 Uint8Array ret = bindings.DelayedPaymentOutputDescriptor_get_channel_keys_id(this.ptr);
65                 return ret;
66         }
67
68         public void set_channel_keys_id(Uint8Array val) {
69                 bindings.DelayedPaymentOutputDescriptor_set_channel_keys_id(this.ptr, val);
70         }
71
72         public number get_channel_value_satoshis() {
73                 number ret = bindings.DelayedPaymentOutputDescriptor_get_channel_value_satoshis(this.ptr);
74                 return ret;
75         }
76
77         public void set_channel_value_satoshis(number val) {
78                 bindings.DelayedPaymentOutputDescriptor_set_channel_value_satoshis(this.ptr, val);
79         }
80
81         public static DelayedPaymentOutputDescriptor constructor_new(OutPoint outpoint_arg, Uint8Array per_commitment_point_arg, number to_self_delay_arg, TxOut output_arg, Uint8Array revocation_pubkey_arg, Uint8Array channel_keys_id_arg, number channel_value_satoshis_arg) {
82                 number ret = bindings.DelayedPaymentOutputDescriptor_new(outpoint_arg == null ? 0 : outpoint_arg.ptr & ~1, per_commitment_point_arg, to_self_delay_arg, output_arg.ptr, revocation_pubkey_arg, channel_keys_id_arg, channel_value_satoshis_arg);
83                 const ret_hu_conv: DelayedPaymentOutputDescriptor = new DelayedPaymentOutputDescriptor(null, ret);
84                 ret_hu_conv.ptrs_to.add(ret_hu_conv);
85                 return ret_hu_conv;
86         }
87
88         public DelayedPaymentOutputDescriptor clone() {
89                 number ret = bindings.DelayedPaymentOutputDescriptor_clone(this.ptr);
90                 const ret_hu_conv: DelayedPaymentOutputDescriptor = new DelayedPaymentOutputDescriptor(null, ret);
91                 ret_hu_conv.ptrs_to.add(this);
92                 return ret_hu_conv;
93         }
94
95         public Uint8Array write() {
96                 Uint8Array ret = bindings.DelayedPaymentOutputDescriptor_write(this.ptr);
97                 return ret;
98         }
99
100         public static Result_DelayedPaymentOutputDescriptorDecodeErrorZ constructor_read(Uint8Array ser) {
101                 number ret = bindings.DelayedPaymentOutputDescriptor_read(ser);
102                 Result_DelayedPaymentOutputDescriptorDecodeErrorZ ret_hu_conv = Result_DelayedPaymentOutputDescriptorDecodeErrorZ.constr_from_ptr(ret);
103                 return ret_hu_conv;
104         }
105
106 }