/* tslint:disable */ /* eslint-disable */ /** * configuration/accountingrules.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. */ // May contain unused imports in some cases // @ts-ignore import type { InterBranchTransferRuleConfiguration } from './inter-branch-transfer-rule-configuration'; /** * Represents the accounting rules configuration. */ export interface AccountingRulesConfiguration { /** * The number of days between the execution of automated accounting closures. If this number is 0, no automated closure is performed. */ automatedAccountingClosuresInterval: number; /** * Represents a list of custom accounting rules for inter-branch transfers. */ customRules?: Array; /** * The code of the general ledger account used by default for inter-branch transfers. */ defaultGlCode: string; }