UNPKG

@apideck/node

Version:
60 lines (59 loc) 1.65 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 { ProfitAndLossRecords } from './ProfitAndLossRecords'; import { ProfitAndLossType } from './ProfitAndLossType'; /** * The other income accounts * @export * @interface OtherIncome */ export interface OtherIncome { /** * The aggregated total of all accounts within this category. * @type {number} * @memberof OtherIncome */ total: number | null; /** * * @type {ProfitAndLossRecords} * @memberof OtherIncome */ records: ProfitAndLossRecords | null; /** * A unique identifier for an object. * @type {string} * @memberof OtherIncome */ readonly id?: string; /** * The account code of the account * @type {string} * @memberof OtherIncome */ readonly code?: string; /** * The name of the account. * @type {string} * @memberof OtherIncome */ readonly title?: string; /** * * @type {ProfitAndLossType} * @memberof OtherIncome */ type?: ProfitAndLossType | null; } export declare function OtherIncomeFromJSON(json: any): OtherIncome; export declare function OtherIncomeFromJSONTyped(json: any, ignoreDiscriminator: boolean): OtherIncome; export declare function OtherIncomeToJSON(value?: OtherIncome | null): any;