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;