import { CodPaymentType } from './cod-payment-type';
import { Currency } from './currency';

/** @description This model represents the option to defer payment for a shipment, otherwise known as Collect on Delivery (COD) */
export class CollectOnDelivery {
  /** @description The payment amount for Collect on Delivery (COD) */
  payment_amount!: Currency;
  /** @description The payment method permitted for Collect on Delivery (COD) */
  payment_type?: CodPaymentType;
}
