/* tslint:disable */ /* eslint-disable */ /** * deposits * 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. */ /** * Change deposit account interest rate */ export interface ChangeInterestRateAction { /** * The new interest rate to set on the account. */ interestRate: number; /** * The notes or description attached to this object. */ notes?: string; /** * The date when the interest rate is changed. */ valueDate: string; }