/* tslint:disable */ /* eslint-disable */ /** * configuration/indexrates.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 { IndexRateConfiguration } from './index-rate-configuration'; /** * Represents the configuration for an index rate source. */ export interface IndexRateSourceConfiguration { /** * The ID of the index rate source, which must be unique. */ id: string; /** * The list of index rates associated with the index rate source. */ indexRates: Array; /** * The name of the index rate source. */ name: string; /** * The notes or description attached to this object. */ notes?: string; /** * Model representation of the type of an index rate source. */ type: IndexRateSourceConfigurationTypeEnum; } export const IndexRateSourceConfigurationTypeEnum = { InterestRate: 'INTEREST_RATE', TaxRate: 'TAX_RATE', WithholdingTaxRate: 'WITHHOLDING_TAX_RATE', } as const; export type IndexRateSourceConfigurationTypeEnum = (typeof IndexRateSourceConfigurationTypeEnum)[keyof typeof IndexRateSourceConfigurationTypeEnum];