/* tslint:disable */ /* eslint-disable */ /** * installments * 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 a fee amount. */ export interface FeeAmount { /** * The due amount. */ due?: number; /** * The expected amount, which is sum of paid and due amounts. */ expected?: number; /** * The expected amount, which is the sum of unapplied fee and planned fee due amounts. */ expectedUnapplied?: number; /** * The paid amount. */ paid?: number; }