UNPKG

ecpay-einvoice-ts

Version:

ECPay e-invoice SDK for TypeScript

14 lines (13 loc) 272 B
export type CheckLoveCodeInput = { MerchantID: string, // 愛心碼 LoveCode: string } export type CheckLoveCodeOutput = { RtnCode: number, RtnMsg: string, // 是否存在 // Y: 存在 // N: 不存在 IsExist: "Y" | "N", }