@apideck/node
Version:
Apideck Node.js SDK
42 lines (41 loc) • 1.35 kB
TypeScript
/**
* Apideck
* The Apideck OpenAPI Spec: SDK Optimized
*
* The version of the OpenAPI document: 10.13.0
* Contact: support@apideck.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
import { BalanceByPeriod } from './BalanceByPeriod';
import { Currency } from './Currency';
/**
*
* @export
* @interface OutstandingBalanceByCurrency
*/
export interface OutstandingBalanceByCurrency {
/**
*
* @type {Currency}
* @memberof OutstandingBalanceByCurrency
*/
currency?: Currency | null;
/**
* Total amount of the outstanding balance.
* @type {number}
* @memberof OutstandingBalanceByCurrency
*/
total_amount?: number;
/**
*
* @type {Array<BalanceByPeriod>}
* @memberof OutstandingBalanceByCurrency
*/
balances_by_period?: Array<BalanceByPeriod>;
}
export declare function OutstandingBalanceByCurrencyFromJSON(json: any): OutstandingBalanceByCurrency;
export declare function OutstandingBalanceByCurrencyFromJSONTyped(json: any, ignoreDiscriminator: boolean): OutstandingBalanceByCurrency;
export declare function OutstandingBalanceByCurrencyToJSON(value?: OutstandingBalanceByCurrency | null): any;