UNPKG

@portone/server-sdk

Version:

PortOne JavaScript SDK for server-side usage

12 lines (11 loc) 1.11 kB
import type { WebhookTransactionCancelled } from "./WebhookTransactionCancelled.js"; import type { WebhookTransactionConfirm } from "./WebhookTransactionConfirm.js"; import type { WebhookTransactionDisputeCreated } from "./WebhookTransactionDisputeCreated.js"; import type { WebhookTransactionDisputeResolved } from "./WebhookTransactionDisputeResolved.js"; import type { WebhookTransactionFailed } from "./WebhookTransactionFailed.js"; import type { WebhookTransactionPaid } from "./WebhookTransactionPaid.js"; import type { WebhookTransactionPayPending } from "./WebhookTransactionPayPending.js"; import type { WebhookTransactionReady } from "./WebhookTransactionReady.js"; import type { WebhookTransactionVirtualAccountIssued } from "./WebhookTransactionVirtualAccountIssued.js"; /** 결제 관련 */ export type WebhookTransaction = WebhookTransactionReady | WebhookTransactionPaid | WebhookTransactionVirtualAccountIssued | WebhookTransactionFailed | WebhookTransactionPayPending | WebhookTransactionConfirm | WebhookTransactionDisputeCreated | WebhookTransactionDisputeResolved | WebhookTransactionCancelled;