/* tslint:disable */ /* eslint-disable */ /** * configuration/endofdayprocessing.yaml * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: v2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * Model representation of the end of day processing configuration. */ export interface EndOfDayProcessingConfiguration { /** * The accounting cut off time. Only set if the processing method is automatic. */ accountingCutOffTime?: string; /** * Model representation of the end of day processing method configuration. */ endOfDayProcessingMethod: EndOfDayProcessingConfigurationEndOfDayProcessingMethodEnum; } export const EndOfDayProcessingConfigurationEndOfDayProcessingMethodEnum = { Automatic: 'AUTOMATIC', Manual: 'MANUAL', EarlyManual: 'EARLY_MANUAL', } as const; export type EndOfDayProcessingConfigurationEndOfDayProcessingMethodEnum = (typeof EndOfDayProcessingConfigurationEndOfDayProcessingMethodEnum)[keyof typeof EndOfDayProcessingConfigurationEndOfDayProcessingMethodEnum];