payrex-js-sdk
Version:
A PayRex SDK written for NodeJS
21 lines (18 loc) • 461 B
text/typescript
import { RefundResource } from './types.cjs';
declare class RefundDto {
id: string;
resource: string;
amount: number;
status: string;
currency: string;
description: string;
reason: string;
remarks: string;
livemode: boolean;
metadata: Record<string, string> | null;
payment_id: string;
created_at: number;
updated_at: number;
constructor(apiResponse: RefundResource);
}
export { RefundDto as default };