/* 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 CreateCommissionRecipientRequestDto */ export interface CreateCommissionRecipientRequestDto { /** * The unique code or identifier of the commission agreement product this recipient is associated with * @type {string} * @memberof CreateCommissionRecipientRequestDto */ 'commissionAgreementProductCode': string; /** * Human-readable display name for the commission recipient * @type {string} * @memberof CreateCommissionRecipientRequestDto */ 'displayName': string; /** * The unique code or identifier of the partner associated with this commission recipient * @type {string} * @memberof CreateCommissionRecipientRequestDto */ 'partnerCode': string; }