/* 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. */ /** * Represents a custom accounting rule for inter-branch transfers. The specified general ledger account will be used for the given branches, instead of the default general ledger account code for inter-branch transfers. */ export interface InterBranchTransferRuleConfiguration { /** * The unique identifier of the account that is mapped to the `financialResource` value. */ glCode: string; /** * A user-defined unique ID. Note that the rules are ordered by ID in the YAML file. */ id: string; /** * The ID of the left branch of the accounting rule. */ leftBranchId: string; /** * The ID of the right branch of the accounting rule. */ rightBranchId: string; }