export type CheckLoveCodeInput = {
    MerchantID: string,
    // 愛心碼
    LoveCode: string
}

export type CheckLoveCodeOutput = {
    RtnCode: number,
    RtnMsg: string,
    // 是否存在
    // Y: 存在
    // N: 不存在
    IsExist: "Y" | "N",
}