/* tslint:disable */ /* eslint-disable */ /** * configuration/labels.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 the object label value */ export interface ObjectLabelValueConfiguration { /** * The plural value */ pluralValue: string; /** * The singular value */ singularValue: string; /** * Enumeration for the object label types. */ type: ObjectLabelValueConfigurationTypeEnum; } export const ObjectLabelValueConfigurationTypeEnum = { Client: 'CLIENT', Group: 'GROUP', Branch: 'BRANCH', Centre: 'CENTRE', CreditOfficer: 'CREDIT_OFFICER', Interest: 'INTEREST', Profit: 'PROFIT', ContractualInterest: 'CONTRACTUAL_INTEREST', EffectiveInterest: 'EFFECTIVE_INTEREST', Fee: 'FEE', Loan: 'LOAN', } as const; export type ObjectLabelValueConfigurationTypeEnum = (typeof ObjectLabelValueConfigurationTypeEnum)[keyof typeof ObjectLabelValueConfigurationTypeEnum];