950c74220e34f505da30485647e665d2229d0b9e
[ldk-java] / c_sharp / src / org / ldk / structs / GossipTimestampFilter.cs
1 using org.ldk.impl;
2 using org.ldk.enums;
3 using org.ldk.util;
4 using System;
5
6 namespace org { namespace ldk { namespace structs {
7
8
9 /**
10  * A gossip_timestamp_filter message is used by a node to request
11  * gossip relay for messages in the requested time range when the
12  * gossip_queries feature has been negotiated.
13  */
14 public class GossipTimestampFilter : CommonBase {
15         internal GossipTimestampFilter(object _dummy, long ptr) : base(ptr) { }
16         ~GossipTimestampFilter() {
17                 if (ptr != 0) { bindings.GossipTimestampFilter_free(ptr); }
18         }
19
20         /**
21          * The genesis hash of the blockchain for channel and node information
22          */
23         public byte[] get_chain_hash() {
24                 byte[] ret = bindings.GossipTimestampFilter_get_chain_hash(this.ptr);
25                 GC.KeepAlive(this);
26                 return ret;
27         }
28
29         /**
30          * The genesis hash of the blockchain for channel and node information
31          */
32         public void set_chain_hash(byte[] val) {
33                 bindings.GossipTimestampFilter_set_chain_hash(this.ptr, InternalUtils.check_arr_len(val, 32));
34                 GC.KeepAlive(this);
35                 GC.KeepAlive(val);
36         }
37
38         /**
39          * The starting unix timestamp
40          */
41         public int get_first_timestamp() {
42                 int ret = bindings.GossipTimestampFilter_get_first_timestamp(this.ptr);
43                 GC.KeepAlive(this);
44                 return ret;
45         }
46
47         /**
48          * The starting unix timestamp
49          */
50         public void set_first_timestamp(int val) {
51                 bindings.GossipTimestampFilter_set_first_timestamp(this.ptr, val);
52                 GC.KeepAlive(this);
53                 GC.KeepAlive(val);
54         }
55
56         /**
57          * The range of information in seconds
58          */
59         public int get_timestamp_range() {
60                 int ret = bindings.GossipTimestampFilter_get_timestamp_range(this.ptr);
61                 GC.KeepAlive(this);
62                 return ret;
63         }
64
65         /**
66          * The range of information in seconds
67          */
68         public void set_timestamp_range(int val) {
69                 bindings.GossipTimestampFilter_set_timestamp_range(this.ptr, val);
70                 GC.KeepAlive(this);
71                 GC.KeepAlive(val);
72         }
73
74         /**
75          * Constructs a new GossipTimestampFilter given each field
76          */
77         public static GossipTimestampFilter of(byte[] chain_hash_arg, int first_timestamp_arg, int timestamp_range_arg) {
78                 long ret = bindings.GossipTimestampFilter_new(InternalUtils.check_arr_len(chain_hash_arg, 32), first_timestamp_arg, timestamp_range_arg);
79                 GC.KeepAlive(chain_hash_arg);
80                 GC.KeepAlive(first_timestamp_arg);
81                 GC.KeepAlive(timestamp_range_arg);
82                 if (ret >= 0 && ret <= 4096) { return null; }
83                 org.ldk.structs.GossipTimestampFilter ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new org.ldk.structs.GossipTimestampFilter(null, ret); }
84                 if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.AddLast(ret_hu_conv); };
85                 return ret_hu_conv;
86         }
87
88         internal long clone_ptr() {
89                 long ret = bindings.GossipTimestampFilter_clone_ptr(this.ptr);
90                 GC.KeepAlive(this);
91                 return ret;
92         }
93
94         /**
95          * Creates a copy of the GossipTimestampFilter
96          */
97         public GossipTimestampFilter clone() {
98                 long ret = bindings.GossipTimestampFilter_clone(this.ptr);
99                 GC.KeepAlive(this);
100                 if (ret >= 0 && ret <= 4096) { return null; }
101                 org.ldk.structs.GossipTimestampFilter ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new org.ldk.structs.GossipTimestampFilter(null, ret); }
102                 if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.AddLast(this); };
103                 return ret_hu_conv;
104         }
105
106         /**
107          * Checks if two GossipTimestampFilters contain equal inner contents.
108          * This ignores pointers and is_owned flags and looks at the values in fields.
109          * Two objects with NULL inner values will be considered "equal" here.
110          */
111         public bool eq(org.ldk.structs.GossipTimestampFilter b) {
112                 bool ret = bindings.GossipTimestampFilter_eq(this.ptr, b == null ? 0 : b.ptr);
113                 GC.KeepAlive(this);
114                 GC.KeepAlive(b);
115                 if (this != null) { this.ptrs_to.AddLast(b); };
116                 return ret;
117         }
118
119         public override bool Equals(object o) {
120                 if (!(o is GossipTimestampFilter)) return false;
121                 return this.eq((GossipTimestampFilter)o);
122         }
123         /**
124          * Serialize the GossipTimestampFilter object into a byte array which can be read by GossipTimestampFilter_read
125          */
126         public byte[] write() {
127                 byte[] ret = bindings.GossipTimestampFilter_write(this.ptr);
128                 GC.KeepAlive(this);
129                 return ret;
130         }
131
132         /**
133          * Read a GossipTimestampFilter from a byte array, created by GossipTimestampFilter_write
134          */
135         public static Result_GossipTimestampFilterDecodeErrorZ read(byte[] ser) {
136                 long ret = bindings.GossipTimestampFilter_read(ser);
137                 GC.KeepAlive(ser);
138                 if (ret >= 0 && ret <= 4096) { return null; }
139                 Result_GossipTimestampFilterDecodeErrorZ ret_hu_conv = Result_GossipTimestampFilterDecodeErrorZ.constr_from_ptr(ret);
140                 return ret_hu_conv;
141         }
142
143 }
144 } } }