We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 204012b + ece53b9 commit 6e86b37Copy full SHA for 6e86b37
src/settlement/interface.ts
@@ -11,6 +11,7 @@ export interface Settlement {
11
settlement_date: Date;
12
domain: string;
13
total_amount: number;
14
+ total_fees:number;
15
status: string;
16
id: number;
17
createdAt: Date;
src/settlement/settlement.ts
@@ -22,7 +22,7 @@ export class Settlement {
22
id: string,
23
queryParams: QueryParams,
24
): Promise<ListSettlementTransactionsResponse | BadRequest> {
25
- return await this.http.get(`/settlement/$[id]/transactions`, {
+ return await this.http.get(`/settlement/${id}/transactions`, {
26
params: { ...queryParams },
27
});
28
}
0 commit comments