@portone/server-sdk
Version:
PortOne JavaScript SDK for server-side usage
6 lines (5 loc) • 635 B
TypeScript
import type { WebhookTransactionCancelledDataCancelPending } from "./WebhookTransactionCancelledDataCancelPending.js";
import type { WebhookTransactionCancelledDataCancelled } from "./WebhookTransactionCancelledDataCancelled.js";
import type { WebhookTransactionCancelledDataPartialCancelled } from "./WebhookTransactionCancelledDataPartialCancelled.js";
/** 결제 취소 관련 웹훅을 트리거한 이벤트의 실제 세부 내용입니다. */
export type WebhookTransactionCancelledData = WebhookTransactionCancelledDataPartialCancelled | WebhookTransactionCancelledDataCancelled | WebhookTransactionCancelledDataCancelPending;