/* 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. */ /** * Represents the configuration for an index rate. */ export interface IndexRateConfiguration { /** * The ID of the index rate, which must be unique. */ id: string; /** * The notes or description attached to this object. */ notes?: string; /** * The percentage value of the index rate. */ rate: number; /** * The date when the index rate starts being the active rate for its source. */ startDate: string; }