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

    Type Alias PartialCancelledPaymentEvent

    결제 부분 취소 상태 이벤트

    type PartialCancelledPaymentEvent = {
        type: "PARTIAL_CANCELLED";
        id: string;
        paymentId: string;
        transactionId: string;
        merchantId: string;
        storeId: string;
        method?: PaymentMethod;
        channel: SelectedChannel;
        channelGroup?: ChannelGroupSummary;
        version: PortOneVersion;
        scheduleId?: string;
        webhooks?: PaymentWebhook[];
        requestedAt: string;
        createdAt: string;
        orderName: string;
        totalAmount: PaymentAmount;
        currency: Currency;
        customer: Customer;
        isCulturalExpense?: boolean;
        escrow?: PaymentEscrow;
        products?: PaymentProduct[];
        productCount?: number;
        customData?: string;
        country?: Country;
        pgTxId?: string;
        cashReceipt?: PaymentCashReceipt;
        receiptUrl?: string;
        cancellation?: PaymentCancellation;
        promotionId?: string;
        eventAmount: number;
    }
    Index

    Properties

    type: "PARTIAL_CANCELLED"

    결제 이벤트 종류

    id: string

    결제 이벤트 아이디

    paymentId: string

    결제 건 아이디

    transactionId: string

    결제 시도 아이디

    merchantId: string

    고객사 아이디

    storeId: string

    상점 아이디

    method?: PaymentMethod

    결제수단 정보

    결제 채널

    channelGroup?: ChannelGroupSummary

    결제 채널 그룹 정보

    포트원 버전

    scheduleId?: string

    결제 예약 건 아이디

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

    webhooks?: PaymentWebhook[]

    웹훅 발송 내역

    requestedAt: string

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

    createdAt: string

    이벤트 생성 시점 (RFC 3339 date-time)

    orderName: string

    주문명

    totalAmount: PaymentAmount

    총 결제 금액 관련 세부 정보

    currency: Currency

    통화

    customer: Customer

    구매자 정보

    isCulturalExpense?: boolean

    문화비 지출 여부

    escrow?: PaymentEscrow

    에스크로 결제 정보

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

    products?: PaymentProduct[]

    상품 정보

    productCount?: number

    상품 갯수 (int32)

    customData?: string

    사용자 지정 데이터

    country?: Country

    국가 코드

    pgTxId?: string

    PG사 거래 아이디

    cashReceipt?: PaymentCashReceipt

    현금영수증

    receiptUrl?: string

    거래 영수증 URL

    cancellation?: PaymentCancellation

    결제 취소 정보

    promotionId?: string

    프로모션 아이디

    eventAmount: number

    처리 금액

    해당 이벤트에서 처리된 금액으로, 취소 이벤트인 경우 음수로 표기됩니다. (int64)