UNPKG

@apideck/node

Version:
41 lines (40 loc) 1.39 kB
/** * 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 { OutstandingBalanceByCurrency } from './OutstandingBalanceByCurrency'; /** * * @export * @interface OutstandingBalanceByCustomer */ export interface OutstandingBalanceByCustomer { /** * Unique identifier for the customer. * @type {string} * @memberof OutstandingBalanceByCustomer */ customer_id?: string; /** * Full name of the customer. * @type {string} * @memberof OutstandingBalanceByCustomer */ customer_name?: string; /** * * @type {Array<OutstandingBalanceByCurrency>} * @memberof OutstandingBalanceByCustomer */ outstanding_balances_by_currency?: Array<OutstandingBalanceByCurrency>; } export declare function OutstandingBalanceByCustomerFromJSON(json: any): OutstandingBalanceByCustomer; export declare function OutstandingBalanceByCustomerFromJSONTyped(json: any, ignoreDiscriminator: boolean): OutstandingBalanceByCustomer; export declare function OutstandingBalanceByCustomerToJSON(value?: OutstandingBalanceByCustomer | null): any;