/* 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 { CommissionAgreementRuleConfigDto } from './commission-agreement-rule-config-dto'; /** * * @export * @interface UpdateCommissionAgreementRuleRequestDto */ export interface UpdateCommissionAgreementRuleRequestDto { /** * Code of the commission agreement rule to update * @type {string} * @memberof UpdateCommissionAgreementRuleRequestDto */ 'code': string; /** * Configuration object for the commission agreement rule * @type {CommissionAgreementRuleConfigDto} * @memberof UpdateCommissionAgreementRuleRequestDto */ 'config': CommissionAgreementRuleConfigDto; /** * Status of the commission agreement rule * @type {string} * @memberof UpdateCommissionAgreementRuleRequestDto */ 'status': UpdateCommissionAgreementRuleRequestDtoStatusEnum; /** * Code of the commission agreement product to update a rule for * @type {string} * @memberof UpdateCommissionAgreementRuleRequestDto */ 'commissionAgreementProductCode': string; } export const UpdateCommissionAgreementRuleRequestDtoStatusEnum = { Active: 'active', Inactive: 'inactive', Draft: 'draft' } as const; export type UpdateCommissionAgreementRuleRequestDtoStatusEnum = typeof UpdateCommissionAgreementRuleRequestDtoStatusEnum[keyof typeof UpdateCommissionAgreementRuleRequestDtoStatusEnum];