/* 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 CreateCommissionRecipientForProductsRequestDto */ export interface CreateCommissionRecipientForProductsRequestDto { /** * List of commission agreement product codes to create a recipient for * @type {Array} * @memberof CreateCommissionRecipientForProductsRequestDto */ 'commissionAgreementProductCodes': Array; /** * Human-readable display name for the commission recipient * @type {string} * @memberof CreateCommissionRecipientForProductsRequestDto */ 'displayName': string; /** * The unique code or identifier of the partner associated with this commission recipient * @type {string} * @memberof CreateCommissionRecipientForProductsRequestDto */ 'partnerCode': string; }