UNPKG

@apideck/node

Version:
53 lines (52 loc) 1.56 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 { OutstandingBalanceBySupplier } from './OutstandingBalanceBySupplier'; /** * * @export * @interface AgedCreditors */ export interface AgedCreditors { /** * The exact date and time the report was generated. * @type {Date} * @memberof AgedCreditors */ report_generated_at?: Date; /** * The cutoff date for transactions included in the report. * @type {Date} * @memberof AgedCreditors */ report_as_of_date?: Date; /** * Number of aging periods shown in the report. * @type {number} * @memberof AgedCreditors */ period_count?: number; /** * Length of each aging period in days. * @type {number} * @memberof AgedCreditors */ period_length?: number; /** * * @type {Array<OutstandingBalanceBySupplier>} * @memberof AgedCreditors */ outstanding_balances?: Array<OutstandingBalanceBySupplier>; } export declare function AgedCreditorsFromJSON(json: any): AgedCreditors; export declare function AgedCreditorsFromJSONTyped(json: any, ignoreDiscriminator: boolean): AgedCreditors; export declare function AgedCreditorsToJSON(value?: AgedCreditors | null): any;