/** * EMIL Tenant Service * The EMIL TenantService 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 { CustomFieldDto } from './custom-field-dto'; /** * * @export * @interface CreateCustomSchemaRequestDto */ export interface CreateCustomSchemaRequestDto { /** * * @type {Array} * @memberof CreateCustomSchemaRequestDto */ 'items': Array; /** * * @type {string} * @memberof CreateCustomSchemaRequestDto */ 'entity': CreateCustomSchemaRequestDtoEntityEnum; /** * * @type {string} * @memberof CreateCustomSchemaRequestDto */ 'productCode'?: string; } export declare const CreateCustomSchemaRequestDtoEntityEnum: { readonly Account: "account"; readonly Claim: "claim"; readonly Invoice: "invoice"; readonly Payment: "payment"; readonly Organization: "organization"; readonly PayoutDetails: "payout_details"; }; export type CreateCustomSchemaRequestDtoEntityEnum = typeof CreateCustomSchemaRequestDtoEntityEnum[keyof typeof CreateCustomSchemaRequestDtoEntityEnum];