/* 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. */ export interface IndexRate { /** * The index rate source that the index rate belongs to. */ assignedIndexRateSourceKey?: string; /** * The encoded key of the index rate, which is auto generated, and unique. */ encodedKey?: string; /** * The ID of the index rate, which can be generated and customized, and 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; /** * The key for the user that last modified the index rate. */ userKey?: string; }