UNPKG

@portone/server-sdk

Version:

PortOne JavaScript SDK for server-side usage

13 lines (12 loc) 373 B
import type { CashReceiptInputType } from "./../common/CashReceiptInputType.js"; /** 현금영수증 입력 정보 */ export type CashReceiptInput = { /** 현금영수증 유형 */ type: CashReceiptInputType; /** * 사용자 식별 번호 * * 미발행 유형 선택 시 입력하지 않습니다. */ customerIdentityNumber?: string; };