UNPKG

@apideck/node

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