Update auto-generated bindings
[ldk-java] / ts / structs / ExpiryTime.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 ExpiryTime 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.ExpiryTime_free(this.ptr);
19                     }
20                 }
21         public number clone_ptr() {
22                 number ret = bindings.ExpiryTime_clone_ptr(this.ptr);
23                 return ret;
24         }
25
26         public ExpiryTime clone() {
27                 number ret = bindings.ExpiryTime_clone(this.ptr);
28                 const ret_hu_conv: ExpiryTime = new ExpiryTime(null, ret);
29                 ret_hu_conv.ptrs_to.add(this);
30                 return ret_hu_conv;
31         }
32
33         public number hash() {
34                 number ret = bindings.ExpiryTime_hash(this.ptr);
35                 return ret;
36         }
37
38         public boolean eq(ExpiryTime b) {
39                 boolean ret = bindings.ExpiryTime_eq(this.ptr, b == null ? 0 : b.ptr & ~1);
40                 this.ptrs_to.add(b);
41                 return ret;
42         }
43
44         public static Result_ExpiryTimeCreationErrorZ constructor_from_seconds(number seconds) {
45                 number ret = bindings.ExpiryTime_from_seconds(seconds);
46                 Result_ExpiryTimeCreationErrorZ ret_hu_conv = Result_ExpiryTimeCreationErrorZ.constr_from_ptr(ret);
47                 return ret_hu_conv;
48         }
49
50         public static Result_ExpiryTimeCreationErrorZ constructor_from_duration(number duration) {
51                 number ret = bindings.ExpiryTime_from_duration(duration);
52                 Result_ExpiryTimeCreationErrorZ ret_hu_conv = Result_ExpiryTimeCreationErrorZ.constr_from_ptr(ret);
53                 return ret_hu_conv;
54         }
55
56         public number as_seconds() {
57                 number ret = bindings.ExpiryTime_as_seconds(this.ptr);
58                 return ret;
59         }
60
61         public number as_duration() {
62                 number ret = bindings.ExpiryTime_as_duration(this.ptr);
63                 return ret;
64         }
65
66 }