/* 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 CreateCommissionItemRequestDto */ export interface CreateCommissionItemRequestDto { /** * The name or title of the commission item * @type {string} * @memberof CreateCommissionItemRequestDto */ 'name': string; /** * A detailed description explaining what this commission item represents * @type {string} * @memberof CreateCommissionItemRequestDto */ 'description': string; /** * The monetary amount of the commission item in the smallest currency unit (e.g., cents) * @type {number} * @memberof CreateCommissionItemRequestDto */ 'amount': number; /** * The type of commission item. Valid values: sales, maintenance, other * @type {string} * @memberof CreateCommissionItemRequestDto */ 'type': CreateCommissionItemRequestDtoTypeEnum; } export const CreateCommissionItemRequestDtoTypeEnum = { Sales: 'sales', Maintenance: 'maintenance', Other: 'other' } as const; export type CreateCommissionItemRequestDtoTypeEnum = typeof CreateCommissionItemRequestDtoTypeEnum[keyof typeof CreateCommissionItemRequestDtoTypeEnum];