UNPKG

@apideck/node

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