/* tslint:disable */ /* eslint-disable */ /** * indexratesources * 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 an index rate source. */ export interface IndexRateSource { /** * The creation date of the index rate source */ creationDate?: string; /** * The encoded key of the index rate source, which is auto generated, and unique. */ encodedKey?: string; /** * The ID of the index rate source, which can be generated and customized, and must be unique. */ id?: string; /** * The last date this rate source was modified */ lastModifiedDate?: string; /** * The name of the index rate source. */ name?: string; /** * The notes about the the index rate source. */ notes?: string; /** * The type of index rate source. */ type?: IndexRateSourceTypeEnum; } export const IndexRateSourceTypeEnum = { InterestRate: 'INTEREST_RATE', TaxRate: 'TAX_RATE', WithholdingTaxRate: 'WITHHOLDING_TAX_RATE', PrincipalTaxRate: 'PRINCIPAL_TAX_RATE', } as const; export type IndexRateSourceTypeEnum = (typeof IndexRateSourceTypeEnum)[keyof typeof IndexRateSourceTypeEnum];