/* 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. */ import { CreateCommissionItemRequestDto } from './create-commission-item-request-dto'; /** * * @export * @interface CreateCommissionRequestDto */ export interface CreateCommissionRequestDto { /** * A detailed description explaining what this commission represents and its purpose * @type {string} * @memberof CreateCommissionRequestDto */ 'description': string; /** * The code of the commission agreement version being used for this commission * @type {string} * @memberof CreateCommissionRequestDto */ 'commissionAgreementVersionCode': string; /** * The unique code or identifier of the partner associated with this commission * @type {string} * @memberof CreateCommissionRequestDto */ 'partnerCode': string; /** * The policy code or identifier of the policy associated with this commission * @type {string} * @memberof CreateCommissionRequestDto */ 'policyCode': string; /** * An array of commission items that make up this commission. Each item represents a specific commission component with its own amount, type * @type {Array} * @memberof CreateCommissionRequestDto */ 'items': Array; }