/* tslint:disable */ /* eslint-disable */ /** * configuration/transactionchannels.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 { AccessRights } from './access-rights'; // May contain unused imports in some cases // @ts-ignore import type { ConstraintsConfiguration } from './constraints-configuration'; /** * Model representation of the configuration for a transaction channel. */ export interface TransactionChannelConfiguration { /** * The code of the GLAccount of the transaction channel. */ glAccountCode?: string; /** * User-defined ID, unique in the configuration. */ id: string; loansConstraints?: ConstraintsConfiguration; /** * Name of the transaction channel */ name: string; savingsConstraints?: ConstraintsConfiguration; /** * Model representation of the state of the transaction channel configuration. */ state: TransactionChannelConfigurationStateEnum; usageRights?: AccessRights; } export const TransactionChannelConfigurationStateEnum = { Active: 'ACTIVE', Inactive: 'INACTIVE', } as const; export type TransactionChannelConfigurationStateEnum = (typeof TransactionChannelConfigurationStateEnum)[keyof typeof TransactionChannelConfigurationStateEnum];