import { PaymentChanel } from "../../enums/payment-chanel.enum";
export interface WechatPayTransactionInitial {
    merchantCode?: string;
    ip: string;
    amount: number;
    orderId: string;
    orderDescription: string;
    paymentChannel: PaymentChanel;
    redirectUrls: {
        successUrl: string;
    };
}
