@portone/server-sdk
Version:
PortOne JavaScript SDK for server-side usage
15 lines (14 loc) • 472 B
TypeScript
import type { BillingKeyFailure } from "./../../payment/billingKey/BillingKeyFailure.js";
import type { SelectedChannel } from "./../../common/SelectedChannel.js";
/** 빌링키 발급 실패 채널 응답 */
export type FailedPgBillingKeyIssueResponse = {
type: "FAILED";
/**
* 채널
*
* 빌링키 발급을 시도한 채널입니다.
*/
channel: SelectedChannel;
/** 발급 실패 상세 정보 */
failure: BillingKeyFailure;
};