interface PriceCalculationRequest {
    basePrice?: number;
    currency?: string;
    ecoTax?: number;
    taxRate?: number;
    taxValue?: number;
    totalPrice?: number;
}

Properties

basePrice?: number

Net price value of the configuration.

currency?: string

ISO 4217 currency code.

ecoTax?: number

Net eco tax value

taxRate?: number

Tax rate of the configuration.

taxValue?: number

Tax value of the configuration.

totalPrice?: number

Gross price value of the configuration.