/** @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 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',
}
