@shipengine/connect-carrier-api
Version:
This is the typescript/javascript definitions for carrier api
8 lines (7 loc) • 452 B
TypeScript
/** @description This model specifies whether the payment is required before the delivery of goods or services or if credit is extended to the customer.*/
export declare enum PaymentTerms {
/** @description Payment must be made in full before the goods or services are delivered.*/
Prepaid = "prepaid",
/** @description Payment is deferred, allowing the customer to settle the invoice at a later agreed-upon date.*/
Credit = "credit"
}