Alokai

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

NameRequiredTypeDescription
discountRateOptionalnumberValue of the discount {number} QuoteDiscount
discountTypeOptionalstringType of the discount - PERCENT for discount by percentage, ABSOLUTE for discount by amount, TARGET for discount by adjustment of the total value {string} QuoteDiscount

On this page