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