/** * Emil PublicAPI * The Emil Public API description * * The version of the OpenAPI document: 1.0 * Contact: kontakt@emil.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { PolicyObjectRequestDto } from './policy-object-request-dto'; import { PremiumOverrideRequestDto } from './premium-override-request-dto'; /** * * @export * @interface CalculateProductTariffQuoteRequestDto */ export interface CalculateProductTariffQuoteRequestDto { /** * Tariff key * @type {string} * @memberof CalculateProductTariffQuoteRequestDto */ 'tariffKey': string; /** * The policy objects contains necessary information to create a policy. The Policy objects array will be validated if the \'validate\' flag is set to true * @type {Array} * @memberof CalculateProductTariffQuoteRequestDto */ 'policyObjects'?: Array; /** * Premium Override is utilized to override the premium calculation. The premium formulas will be disregarded when this object is present. The premium override content will be validated if the \'validate\' flag is set to true. * @type {PremiumOverrideRequestDto} * @memberof CalculateProductTariffQuoteRequestDto */ 'premiumOverride'?: PremiumOverrideRequestDto; }