UNPKG

@portone/server-sdk

Version:

PortOne JavaScript SDK for server-side usage

18 lines (17 loc) 833 B
import type { CreatePlatformOrderTransferBodyAdditionalFee } from "./../../platform/transfer/CreatePlatformOrderTransferBodyAdditionalFee.js"; import type { CreatePlatformOrderTransferBodyDiscount } from "./../../platform/transfer/CreatePlatformOrderTransferBodyDiscount.js"; import type { CreatePlatformOrderTransferBodyProduct } from "./../../platform/transfer/CreatePlatformOrderTransferBodyProduct.js"; /** 주문 항목 */ export type CreatePlatformOrderTransferBodyOrderLine = { /** 상품 */ product: CreatePlatformOrderTransferBodyProduct; /** * 상품 수량 * (int32) */ quantity: number; /** 상품 할인 정보 */ discounts: CreatePlatformOrderTransferBodyDiscount[]; /** 상품 추가 수수료 정보 */ additionalFees: CreatePlatformOrderTransferBodyAdditionalFee[]; };