타입 별칭 FailedPayment

FailedPayment: {
    status: "FAILED";
    id: string;
    transactionId: string;
    merchantId: string;
    storeId: string;
    method?: PaymentMethod;
    channel?: SelectedChannel;
    channelGroup?: ChannelGroupSummary;
    version: PortOneVersion;
    scheduleId?: string;
    billingKey?: string;
    webhooks?: PaymentWebhook[];
    requestedAt: string;
    updatedAt: string;
    statusChangedAt: string;
    orderName: string;
    amount: PaymentAmount;
    currency: Currency;
    customer: Customer;
    promotionId?: string;
    isCulturalExpense?: boolean;
    escrow?: PaymentEscrow;
    products?: PaymentProduct[];
    productCount?: number;
    customData?: string;
    country?: Country;
    failedAt: string;
}

결제 실패 상태 건

타입 선언

  • status: "FAILED"

    결제 건 상태

  • id: string

    결제 건 아이디

  • transactionId: string

    결제 건 포트원 채번 아이디

    V1 결제 건의 경우 imp_uid에 해당합니다.

  • merchantId: string

    고객사 아이디

  • storeId: string

    상점 아이디

  • Optionalmethod?: PaymentMethod

    결제수단 정보

  • Optionalchannel?: SelectedChannel

    결제 채널

  • OptionalchannelGroup?: ChannelGroupSummary

    결제 채널 그룹 정보

  • version: PortOneVersion

    포트원 버전

  • OptionalscheduleId?: string

    결제 예약 건 아이디

    결제 예약을 이용한 경우에만 존재

  • OptionalbillingKey?: string

    결제 시 사용된 빌링키

    빌링키 결제인 경우에만 존재

  • Optionalwebhooks?: PaymentWebhook[]

    웹훅 발송 내역

  • requestedAt: string

    결제 요청 시점

  • updatedAt: string

    업데이트 시점

  • statusChangedAt: string

    상태 업데이트 시점

  • orderName: string

    주문명

  • amount: PaymentAmount

    결제 금액 관련 세부 정보

  • currency: Currency

    통화

  • customer: Customer

    구매자 정보

  • OptionalpromotionId?: string

    프로모션 아이디

  • OptionalisCulturalExpense?: boolean

    문화비 지출 여부

  • Optionalescrow?: PaymentEscrow

    에스크로 결제 정보

    에스크로 결제인 경우 존재합니다.

  • Optionalproducts?: PaymentProduct[]

    상품 정보

  • OptionalproductCount?: number

    상품 갯수

  • OptionalcustomData?: string

    사용자 지정 데이터

  • Optionalcountry?: Country

    국가 코드

  • failedAt: string

    결제 실패 시점