UNPKG

@portone/browser-sdk

Version:

PortOne SDK for browser

71 lines (70 loc) 2.37 kB
import { PortOneError } from './index.js'; import { CheckoutServiceErrorCode } from './CheckoutServiceErrorCode.js'; import { GrpcErrorCode } from './GrpcErrorCode.js'; import { TxServiceIssueErrorCode } from './TxServiceIssueErrorCode.js'; import type { PgCode } from '../entity/PgCode.js'; import type { PgMessage } from '../entity/PgMessage.js'; export declare function isIssueBillingKeyError(error: unknown): error is IssueBillingKeyError; /** * **오류 코드** * * 실패한 경우 오류 코드입니다. */ export type IssueBillingKeyErrorCode = CheckoutServiceErrorCode | GrpcErrorCode | TxServiceIssueErrorCode; export declare class IssueBillingKeyError extends Error implements PortOneError { static [Symbol.hasInstance](instance: unknown): boolean; __portOneErrorType: string; transactionType: string; /** * **오류 코드** * * 실패한 경우 오류 코드입니다. */ code: IssueBillingKeyErrorCode; /** * **오류 메시지** * * 실패한 경우 오류 메시지입니다. */ message: string; billingKey?: string | undefined; /** * **PG 오류 코드** * * PG에서 오류 코드를 내려 주는 경우 이 오류 코드를 그대로 반환합니다. */ pgCode?: PgCode | undefined; /** * **PG 오류 메시지** * * PG에서 오류 메시지를 내려 주는 경우 이 오류 메시지를 그대로 반환합니다. */ pgMessage?: PgMessage | undefined; constructor({ code, message, billingKey, pgCode, pgMessage, }: { /** * **오류 코드** * * 실패한 경우 오류 코드입니다. */ code: IssueBillingKeyErrorCode; /** * **오류 메시지** * * 실패한 경우 오류 메시지입니다. */ message: string; billingKey?: string | undefined; /** * **PG 오류 코드** * * PG에서 오류 코드를 내려 주는 경우 이 오류 코드를 그대로 반환합니다. */ pgCode?: PgCode | undefined; /** * **PG 오류 메시지** * * PG에서 오류 메시지를 내려 주는 경우 이 오류 메시지를 그대로 반환합니다. */ pgMessage?: PgMessage | undefined; }); }