QuoteDiscount
Discount applied to the quote - discountType for type of the discount, discountRate for value of the discount QuoteDiscount
export interface QuoteDiscount {
'discountRate'?: number;
'discountType'?: string;
}Properties
| Name | Required | Type | Description |
|---|---|---|---|
discountRate | Optional | number | Value of the discount {number} QuoteDiscount |
discountType | Optional | string | Type of the discount - PERCENT for discount by percentage, ABSOLUTE for discount by amount, TARGET for discount by adjustment of the total value {string} QuoteDiscount |