Skip to content

Commit f35922b

Browse files
committed
added refund
1 parent ac9d3ab commit f35922b

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/paystack.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ import { Transaction } from './transaction/transaction';
1616
import { Transfer } from './transfer/transfer';
1717
import { BulkCharge } from './bulkcharge/bulkcharge';
1818
import { Verification } from './verification/verification';
19+
import { Refund } from './refund/refund';
1920

2021
/**
2122
* Paystack SDK
@@ -40,6 +41,7 @@ export class Paystack {
4041
public invoice: Invoice;
4142
public settlement: Settlement;
4243
public recipient: Recipient;
44+
public refund: Refund;
4345
public verification: Verification;
4446
constructor(private readonly key: string) {
4547
this.http = new Axios({
@@ -69,6 +71,7 @@ export class Paystack {
6971
this.invoice = new Invoice(this.http);
7072
this.settlement = new Settlement(this.http);
7173
this.recipient = new Recipient(this.http);
74+
this.refund = new Refund(this.http);
7275
this.verification = new Verification(this.http);
7376
}
7477
}

0 commit comments

Comments
 (0)