export type EximbayV2Surcharge = {
    /**
     * 항목명
     */
    name?: string | undefined;
    /**
     * 수량
     */
    quantity?: string | undefined;
    /**
     * 단가 (음수 가능)
     */
    unit_price?: string | undefined;
};
