import Joi from 'joi';
import { CurrencySchema } from '../currency-schema';

export const CustomsChargesSchema = Joi.object({
  freight_charge: CurrencySchema.optional(),
  other_charge: CurrencySchema.optional(),
  insurance_charge: CurrencySchema.optional(),
  discount: CurrencySchema.optional(),
});
