/* tslint:disable */ /* eslint-disable */ /** * EMIL CommissionService * The EMIL CommissionService 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. */ /** * * @export * @interface CommissionEstimateClass */ export interface CommissionEstimateClass { /** * The name of the commission estimate * @type {string} * @memberof CommissionEstimateClass */ 'name': string; /** * A detailed description of the commission estimate * @type {string} * @memberof CommissionEstimateClass */ 'description': string; /** * The estimated commission amount in the smallest currency unit (e.g., cents) * @type {number} * @memberof CommissionEstimateClass */ 'amount': number; /** * Type of commission. Valid values: sales, maintenance, other * @type {string} * @memberof CommissionEstimateClass */ 'type': CommissionEstimateClassTypeEnum; /** * Commission group indicating whether this is for the first year or following years * @type {string} * @memberof CommissionEstimateClass */ 'group': CommissionEstimateClassGroupEnum; } export const CommissionEstimateClassTypeEnum = { Sales: 'sales', Maintenance: 'maintenance', Other: 'other' } as const; export type CommissionEstimateClassTypeEnum = typeof CommissionEstimateClassTypeEnum[keyof typeof CommissionEstimateClassTypeEnum]; export const CommissionEstimateClassGroupEnum = { FirstYear: 'firstYear', FollowingYears: 'followingYears' } as const; export type CommissionEstimateClassGroupEnum = typeof CommissionEstimateClassGroupEnum[keyof typeof CommissionEstimateClassGroupEnum];