UNPKG

newebpay-mpg-sdk

Version:

藍新金流 幕前支付(MPG) SDK

27 lines (26 loc) 766 B
export type CreatePeriodicPaymentResponse = { Status: "SUCCESS" | string; Message: string; Result: CreatePeriodicPaymentResult; }; export type CreatePeriodicPaymentResult = DefaultPeriodicPaymentResult | (DefaultPeriodicPaymentResult & AuthorizedPeriodicPaymentResult); type DefaultPeriodicPaymentResult = { MerchantID: string; MerchantOrderNo: string; PeriodType: "D" | "W" | "M" | "Y"; AuthTimes: number; DateArray: string; PeriodAmt: number; PeriodNo: string; }; type AuthorizedPeriodicPaymentResult = { AuthTime: string; TradeNo: string; CardNo: string; AuthCode: string; RespondCode: "00" | string; EscrowBank: string; AuthBank: string; PaymentMethod: "CREDIT" | "UNIONPAY"; }; export {};