Updated bindings
[ldk-java] / src / main / java / org / ldk / structs / ChannelHandshakeConfig.java
1 package org.ldk.structs;
2
3 import org.ldk.impl.bindings;
4 import org.ldk.enums.*;
5 import org.ldk.util.*;
6 import java.util.Arrays;
7
8 @SuppressWarnings("unchecked") // We correctly assign various generic arrays
9 public class ChannelHandshakeConfig extends CommonBase {
10         ChannelHandshakeConfig(Object _dummy, long ptr) { super(ptr); }
11         @Override @SuppressWarnings("deprecation")
12         protected void finalize() throws Throwable {
13                 super.finalize();
14                 if (ptr != 0) { bindings.ChannelHandshakeConfig_free(ptr); }
15         }
16
17         public ChannelHandshakeConfig clone() {
18                 long ret = bindings.ChannelHandshakeConfig_clone(this.ptr);
19                 ChannelHandshakeConfig ret_hu_conv = new ChannelHandshakeConfig(null, ret);
20                 return ret_hu_conv;
21         }
22
23         public int get_minimum_depth() {
24                 int ret = bindings.ChannelHandshakeConfig_get_minimum_depth(this.ptr);
25                 return ret;
26         }
27
28         public void set_minimum_depth(int val) {
29                 bindings.ChannelHandshakeConfig_set_minimum_depth(this.ptr, val);
30         }
31
32         public short get_our_to_self_delay() {
33                 short ret = bindings.ChannelHandshakeConfig_get_our_to_self_delay(this.ptr);
34                 return ret;
35         }
36
37         public void set_our_to_self_delay(short val) {
38                 bindings.ChannelHandshakeConfig_set_our_to_self_delay(this.ptr, val);
39         }
40
41         public long get_our_htlc_minimum_msat() {
42                 long ret = bindings.ChannelHandshakeConfig_get_our_htlc_minimum_msat(this.ptr);
43                 return ret;
44         }
45
46         public void set_our_htlc_minimum_msat(long val) {
47                 bindings.ChannelHandshakeConfig_set_our_htlc_minimum_msat(this.ptr, val);
48         }
49
50         public static ChannelHandshakeConfig constructor_new(int minimum_depth_arg, short our_to_self_delay_arg, long our_htlc_minimum_msat_arg) {
51                 long ret = bindings.ChannelHandshakeConfig_new(minimum_depth_arg, our_to_self_delay_arg, our_htlc_minimum_msat_arg);
52                 ChannelHandshakeConfig ret_hu_conv = new ChannelHandshakeConfig(null, ret);
53                 return ret_hu_conv;
54         }
55
56         public static ChannelHandshakeConfig constructor_default() {
57                 long ret = bindings.ChannelHandshakeConfig_default();
58                 ChannelHandshakeConfig ret_hu_conv = new ChannelHandshakeConfig(null, ret);
59                 return ret_hu_conv;
60         }
61
62 }