Update auto-generated bindings
[ldk-java] / ts / structs / InvoiceFeatures.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 InvoiceFeatures 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.InvoiceFeatures_free(this.ptr);
19                     }
20                 }
21         public boolean eq(InvoiceFeatures b) {
22                 boolean ret = bindings.InvoiceFeatures_eq(this.ptr, b == null ? 0 : b.ptr & ~1);
23                 this.ptrs_to.add(b);
24                 return ret;
25         }
26
27         public InvoiceFeatures clone() {
28                 number ret = bindings.InvoiceFeatures_clone(this.ptr);
29                 const ret_hu_conv: InvoiceFeatures = new InvoiceFeatures(null, ret);
30                 ret_hu_conv.ptrs_to.add(this);
31                 return ret_hu_conv;
32         }
33
34         public static InvoiceFeatures constructor_empty() {
35                 number ret = bindings.InvoiceFeatures_empty();
36                 const ret_hu_conv: InvoiceFeatures = new InvoiceFeatures(null, ret);
37                 ret_hu_conv.ptrs_to.add(ret_hu_conv);
38                 return ret_hu_conv;
39         }
40
41         public static InvoiceFeatures constructor_known() {
42                 number ret = bindings.InvoiceFeatures_known();
43                 const ret_hu_conv: InvoiceFeatures = new InvoiceFeatures(null, ret);
44                 ret_hu_conv.ptrs_to.add(ret_hu_conv);
45                 return ret_hu_conv;
46         }
47
48         public boolean supports_payment_secret() {
49                 boolean ret = bindings.InvoiceFeatures_supports_payment_secret(this.ptr);
50                 return ret;
51         }
52
53         public Uint8Array write() {
54                 Uint8Array ret = bindings.InvoiceFeatures_write(this.ptr);
55                 return ret;
56         }
57
58         public static Result_InvoiceFeaturesDecodeErrorZ constructor_read(Uint8Array ser) {
59                 number ret = bindings.InvoiceFeatures_read(ser);
60                 Result_InvoiceFeaturesDecodeErrorZ ret_hu_conv = Result_InvoiceFeaturesDecodeErrorZ.constr_from_ptr(ret);
61                 return ret_hu_conv;
62         }
63
64 }