@apideck/node
Version:
Apideck Node.js SDK
41 lines (40 loc) • 1.39 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 { OutstandingBalanceByCurrency } from './OutstandingBalanceByCurrency';
/**
*
* @export
* @interface OutstandingBalanceBySupplier
*/
export interface OutstandingBalanceBySupplier {
/**
* Unique identifier for the supplier.
* @type {string}
* @memberof OutstandingBalanceBySupplier
*/
supplier_id?: string;
/**
* Full name of the supplier.
* @type {string}
* @memberof OutstandingBalanceBySupplier
*/
supplier_name?: string;
/**
*
* @type {Array<OutstandingBalanceByCurrency>}
* @memberof OutstandingBalanceBySupplier
*/
outstanding_balances_by_currency?: Array<OutstandingBalanceByCurrency>;
}
export declare function OutstandingBalanceBySupplierFromJSON(json: any): OutstandingBalanceBySupplier;
export declare function OutstandingBalanceBySupplierFromJSONTyped(json: any, ignoreDiscriminator: boolean): OutstandingBalanceBySupplier;
export declare function OutstandingBalanceBySupplierToJSON(value?: OutstandingBalanceBySupplier | null): any;