@portone/server-sdk
    Preparing search index...

    Type Alias PartialCancelledPaymentTransaction

    결제 부분 취소 상태 건

    type PartialCancelledPaymentTransaction = {
        status: "PARTIAL_CANCELLED";
        id: string;
        paymentId: 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;
        paidAt?: string;
        pgTxId?: string;
        cashReceipt?: PaymentCashReceipt;
        receiptUrl?: string;
        cancellations: PaymentCancellation[];
        cancelledAt: string;
    }
    Index

    Properties

    status: "PARTIAL_CANCELLED"

    결제 시도 상태

    id: string

    결제 시도 아이디 (transactionId)

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

    paymentId: string

    결제 건 아이디

    merchantId: string

    고객사 아이디

    storeId: string

    상점 아이디

    method?: PaymentMethod

    결제수단 정보

    결제 채널

    channelGroup?: ChannelGroupSummary

    결제 채널 그룹 정보

    포트원 버전

    scheduleId?: string

    결제 예약 건 아이디

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

    billingKey?: string

    결제 시 사용된 빌링키

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

    webhooks?: PaymentWebhook[]

    웹훅 발송 내역

    requestedAt: string

    결제 요청 시점 (RFC 3339 date-time)

    updatedAt: string

    업데이트 시점 (RFC 3339 date-time)

    statusChangedAt: string

    상태 업데이트 시점 (RFC 3339 date-time)

    orderName: string

    주문명

    결제 금액 관련 세부 정보

    currency: Currency

    통화

    customer: Customer

    구매자 정보

    promotionId?: string

    프로모션 아이디

    isCulturalExpense?: boolean

    문화비 지출 여부

    escrow?: PaymentEscrow

    에스크로 결제 정보

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

    products?: PaymentProduct[]

    상품 정보

    productCount?: number

    상품 갯수 (int32)

    customData?: string

    사용자 지정 데이터

    country?: Country

    국가 코드

    paidAt?: string

    결제 완료 시점 (RFC 3339 date-time)

    pgTxId?: string

    PG사 거래 아이디

    cashReceipt?: PaymentCashReceipt

    현금영수증

    receiptUrl?: string

    거래 영수증 URL

    cancellations: PaymentCancellation[]

    결제 취소 내역

    cancelledAt: string

    결제 취소 시점 (RFC 3339 date-time)