palmpaywrappersdk
Version:
PalmPay Wrapper Sdk
21 lines (20 loc) • 872 B
TypeScript
export declare class PayInCreateOrderResponseData {
orderNo: string | null;
orderAmount: number;
orderStatus: string;
checkoutUrl: string;
goodsName: string;
sdkSessionId: string;
merchantNo: number;
payToken: string;
sdkSignKey: number;
mockCheckoutUrl: string;
payerVirtualAccNo: string;
payerAccountId: string;
payerAccountType: string;
payMethod: string;
appId: string;
payCodeExpireMilliSec: string;
payCode: string;
constructor(orderNo: string, orderAmount: number, orderStatus: string, checkoutUrl: string, goodsName: string, sdkSessionId: string, merchantNo: number, payToken: string, sdkSignKey: number, mockCheckoutUrl: string, payerVirtualAccNo: string, payerAccountId: string, payerAccountType: string, payMethod: string, appId: string, payCodeExpireMilliSec: string, payCode: string);
}