Update auto-generated bindings
[ldk-java] / ts / structs / ChannelTransactionParameters.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 ChannelTransactionParameters 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.ChannelTransactionParameters_free(this.ptr);
19                     }
20                 }
21         public ChannelPublicKeys get_holder_pubkeys() {
22                 number ret = bindings.ChannelTransactionParameters_get_holder_pubkeys(this.ptr);
23                 const ret_hu_conv: ChannelPublicKeys = new ChannelPublicKeys(null, ret);
24                 ret_hu_conv.ptrs_to.add(this);
25                 return ret_hu_conv;
26         }
27
28         public void set_holder_pubkeys(ChannelPublicKeys val) {
29                 bindings.ChannelTransactionParameters_set_holder_pubkeys(this.ptr, val == null ? 0 : val.ptr & ~1);
30         }
31
32         public number get_holder_selected_contest_delay() {
33                 number ret = bindings.ChannelTransactionParameters_get_holder_selected_contest_delay(this.ptr);
34                 return ret;
35         }
36
37         public void set_holder_selected_contest_delay(number val) {
38                 bindings.ChannelTransactionParameters_set_holder_selected_contest_delay(this.ptr, val);
39         }
40
41         public boolean get_is_outbound_from_holder() {
42                 boolean ret = bindings.ChannelTransactionParameters_get_is_outbound_from_holder(this.ptr);
43                 return ret;
44         }
45
46         public void set_is_outbound_from_holder(boolean val) {
47                 bindings.ChannelTransactionParameters_set_is_outbound_from_holder(this.ptr, val);
48         }
49
50         public CounterpartyChannelTransactionParameters get_counterparty_parameters() {
51                 number ret = bindings.ChannelTransactionParameters_get_counterparty_parameters(this.ptr);
52                 const ret_hu_conv: CounterpartyChannelTransactionParameters = new CounterpartyChannelTransactionParameters(null, ret);
53                 ret_hu_conv.ptrs_to.add(this);
54                 return ret_hu_conv;
55         }
56
57         public void set_counterparty_parameters(CounterpartyChannelTransactionParameters val) {
58                 bindings.ChannelTransactionParameters_set_counterparty_parameters(this.ptr, val == null ? 0 : val.ptr & ~1);
59         }
60
61         public OutPoint get_funding_outpoint() {
62                 number ret = bindings.ChannelTransactionParameters_get_funding_outpoint(this.ptr);
63                 const ret_hu_conv: OutPoint = new OutPoint(null, ret);
64                 ret_hu_conv.ptrs_to.add(this);
65                 return ret_hu_conv;
66         }
67
68         public void set_funding_outpoint(OutPoint val) {
69                 bindings.ChannelTransactionParameters_set_funding_outpoint(this.ptr, val == null ? 0 : val.ptr & ~1);
70         }
71
72         public static ChannelTransactionParameters constructor_new(ChannelPublicKeys holder_pubkeys_arg, number holder_selected_contest_delay_arg, boolean is_outbound_from_holder_arg, CounterpartyChannelTransactionParameters counterparty_parameters_arg, OutPoint funding_outpoint_arg) {
73                 number ret = bindings.ChannelTransactionParameters_new(holder_pubkeys_arg == null ? 0 : holder_pubkeys_arg.ptr & ~1, holder_selected_contest_delay_arg, is_outbound_from_holder_arg, counterparty_parameters_arg == null ? 0 : counterparty_parameters_arg.ptr & ~1, funding_outpoint_arg == null ? 0 : funding_outpoint_arg.ptr & ~1);
74                 const ret_hu_conv: ChannelTransactionParameters = new ChannelTransactionParameters(null, ret);
75                 ret_hu_conv.ptrs_to.add(ret_hu_conv);
76                 return ret_hu_conv;
77         }
78
79         public number clone_ptr() {
80                 number ret = bindings.ChannelTransactionParameters_clone_ptr(this.ptr);
81                 return ret;
82         }
83
84         public ChannelTransactionParameters clone() {
85                 number ret = bindings.ChannelTransactionParameters_clone(this.ptr);
86                 const ret_hu_conv: ChannelTransactionParameters = new ChannelTransactionParameters(null, ret);
87                 ret_hu_conv.ptrs_to.add(this);
88                 return ret_hu_conv;
89         }
90
91         public boolean is_populated() {
92                 boolean ret = bindings.ChannelTransactionParameters_is_populated(this.ptr);
93                 return ret;
94         }
95
96         public DirectedChannelTransactionParameters as_holder_broadcastable() {
97                 number ret = bindings.ChannelTransactionParameters_as_holder_broadcastable(this.ptr);
98                 const ret_hu_conv: DirectedChannelTransactionParameters = new DirectedChannelTransactionParameters(null, ret);
99                 ret_hu_conv.ptrs_to.add(this);
100                 return ret_hu_conv;
101         }
102
103         public DirectedChannelTransactionParameters as_counterparty_broadcastable() {
104                 number ret = bindings.ChannelTransactionParameters_as_counterparty_broadcastable(this.ptr);
105                 const ret_hu_conv: DirectedChannelTransactionParameters = new DirectedChannelTransactionParameters(null, ret);
106                 ret_hu_conv.ptrs_to.add(this);
107                 return ret_hu_conv;
108         }
109
110         public Uint8Array write() {
111                 Uint8Array ret = bindings.ChannelTransactionParameters_write(this.ptr);
112                 return ret;
113         }
114
115         public static Result_ChannelTransactionParametersDecodeErrorZ constructor_read(Uint8Array ser) {
116                 number ret = bindings.ChannelTransactionParameters_read(ser);
117                 Result_ChannelTransactionParametersDecodeErrorZ ret_hu_conv = Result_ChannelTransactionParametersDecodeErrorZ.constr_from_ptr(ret);
118                 return ret_hu_conv;
119         }
120
121 }