newebpay-mpg-sdk
Version:
藍新金流 幕前支付(MPG) SDK
18 lines (17 loc) • 479 B
TypeScript
export type AlterPeriodicPaymentAmountResponseResult = {
MerOrderNo: string;
PeriodNo: string;
AlterAmt: number;
PeriodType: 'D' | 'W' | 'M' | 'Y';
PeriodPoint: string;
NewNextAmt: number;
NewNextTime: string;
PeriodTimes: string;
Extday: string;
NotifyURL: string;
};
export type AlterPeriodicPaymentAmountResponse = {
Status: 'SUCCESS' | 'string';
Message: string;
Result: AlterPeriodicPaymentAmountResponseResult | null;
};