palmpaywrappersdk
Version:
PalmPay Wrapper Sdk
12 lines (11 loc) • 342 B
TypeScript
import { Fee } from './Fee';
export declare class PayOutResponse {
amount: number;
orderNo: string;
orderId: string;
fee: Fee;
orderStatus: string;
message: string;
status: string;
constructor(amount: number, orderNo: string, orderId: string, fee: Fee, orderStatus: string, message: string, status: string);
}