32bef844f5468cd54fae47e522e27a73771382e7
[ldk-java] / ts / structs / PaymentSendFailure.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 PaymentSendFailure 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.PaymentSendFailure_free(this.ptr);
19                     }
20                 }
21         public PaymentSendFailure clone() {
22                 number ret = bindings.PaymentSendFailure_clone(this.ptr);
23                 const ret_hu_conv: PaymentSendFailure = new PaymentSendFailure(null, ret);
24                 ret_hu_conv.ptrs_to.add(this);
25                 return ret_hu_conv;
26         }
27
28 }