UNPKG

@portone/server-sdk

Version:

PortOne JavaScript SDK for server-side usage

8 lines (7 loc) 580 B
import type { WebhookBillingKeyDeleted } from "./WebhookBillingKeyDeleted.js"; import type { WebhookBillingKeyFailed } from "./WebhookBillingKeyFailed.js"; import type { WebhookBillingKeyIssued } from "./WebhookBillingKeyIssued.js"; import type { WebhookBillingKeyReady } from "./WebhookBillingKeyReady.js"; import type { WebhookBillingKeyUpdated } from "./WebhookBillingKeyUpdated.js"; /** 빌링키 발급 관련 */ export type WebhookBillingKey = WebhookBillingKeyReady | WebhookBillingKeyIssued | WebhookBillingKeyFailed | WebhookBillingKeyDeleted | WebhookBillingKeyUpdated;