UNPKG

ecpay-einvoice-ts

Version:

ECPay e-invoice SDK for TypeScript

17 lines (14 loc) 296 B
export type CheckBarcodeInput = { // 特店編號 MerchantID: string, // 手機載具 BarCode: string, } export type CheckBarcodeOutput = { RtnCode:number, RtnMsg: string, // 是否存在 // Y: 存在 // N: 不存在 IsExist: "Y" | "N" }