@portone/server-sdk
Version:
PortOne JavaScript SDK for server-side usage
8 lines (7 loc) • 711 B
TypeScript
import type { WebhookBillingKeyDataDeleted } from "./WebhookBillingKeyDataDeleted.js";
import type { WebhookBillingKeyDataFailed } from "./WebhookBillingKeyDataFailed.js";
import type { WebhookBillingKeyDataIssued } from "./WebhookBillingKeyDataIssued.js";
import type { WebhookBillingKeyDataReady } from "./WebhookBillingKeyDataReady.js";
import type { WebhookBillingKeyDataUpdated } from "./WebhookBillingKeyDataUpdated.js";
/** 빌링키 발급 관련 웹훅을 트리거한 이벤트의 실제 세부 내용입니다. */
export type WebhookBillingKeyData = WebhookBillingKeyDataReady | WebhookBillingKeyDataIssued | WebhookBillingKeyDataFailed | WebhookBillingKeyDataDeleted | WebhookBillingKeyDataUpdated;