portone-api-v2
Version:
PortOne REST API v2
16 lines (15 loc) • 532 B
TypeScript
import type { BillingKeyInfo, BillingKeyInfoSummary } from '../billing-key';
import type { ChannelSpecificFailure, PageInfo } from '../common';
export type FindBillingKey = BillingKeyInfo;
export interface FindManyBillingKeys {
items: BillingKeyInfo[];
page: PageInfo;
}
export interface IssueBillingKey {
billingKeyInfo: BillingKeyInfoSummary;
channelSpecificFailures?: ChannelSpecificFailure[];
}
export interface DeleteBillingKey {
/** 빌링키 삭제 시점 (RFC 3339 date-time) */
deletedAt: string;
}