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

    Type Alias ScheduledPaymentSchedule

    결제 예약 완료 상태

    type ScheduledPaymentSchedule = {
        status: "SCHEDULED";
        id: string;
        merchantId: string;
        storeId: string;
        paymentId: string;
        billingKey: string;
        orderName: string;
        isCulturalExpense: boolean;
        isEscrow: boolean;
        customer: Customer;
        customData: string;
        totalAmount: number;
        taxFreeAmount?: number;
        vatAmount?: number;
        currency: Currency;
        installmentMonth?: number;
        noticeUrls?: string[];
        products?: PaymentProduct[];
        createdAt: string;
        timeToPay: string;
    }
    Index

    Properties

    status: "SCHEDULED"

    결제 예약 건 상태

    id: string

    결제 예약 건 아이디

    merchantId: string

    고객사 아이디

    storeId: string

    상점 아이디

    paymentId: string

    결제 건 아이디

    billingKey: string

    빌링키

    orderName: string

    주문명

    isCulturalExpense: boolean

    문화비 지출 여부

    isEscrow: boolean

    에스크로 결제 여부

    customer: Customer

    고객 정보

    customData: string

    사용자 지정 데이터

    totalAmount: number

    결제 총 금액 (int64)

    taxFreeAmount?: number

    면세액 (int64)

    vatAmount?: number

    부가세 (int64)

    currency: Currency

    통화

    installmentMonth?: number

    할부 개월 수 (int32)

    noticeUrls?: string[]

    웹훅 주소

    products?: PaymentProduct[]

    상품 정보

    createdAt: string

    결제 예약 등록 시점 (RFC 3339 date-time)

    timeToPay: string

    결제 예정 시점 (RFC 3339 date-time)