UNPKG

@portone/server-sdk

Version:

PortOne JavaScript SDK for server-side usage

7 lines (6 loc) 242 B
import type { PaymentTransaction } from "./../payment/PaymentTransaction.js"; /** 결제 시도 내역 조회 응답 정보 */ export type GetPaymentTransactionsResponse = { /** 결제 시도 내역 */ items: PaymentTransaction[]; };