@shipengine/connect-carrier-api
Version:
This is the typescript/javascript definitions for carrier api
11 lines (9 loc) • 473 B
text/typescript
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;
}