UNPKG

@apideck/node

Version:
59 lines (58 loc) 1.63 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 { ProfitAndLossType } from './ProfitAndLossType'; /** * * @export * @interface ProfitAndLossRecord */ export interface ProfitAndLossRecord { /** * The total amount of the transaction or record * @type {number} * @memberof ProfitAndLossRecord */ total: number | null; /** * A unique identifier for an object. * @type {string} * @memberof ProfitAndLossRecord */ readonly id?: string; /** * The account code of the account * @type {string} * @memberof ProfitAndLossRecord */ readonly code?: string; /** * The name of the account. * @type {string} * @memberof ProfitAndLossRecord */ readonly title?: string; /** * * @type {ProfitAndLossType} * @memberof ProfitAndLossRecord */ type?: ProfitAndLossType | null; /** * * @type {number} * @memberof ProfitAndLossRecord */ value?: number; } export declare function ProfitAndLossRecordFromJSON(json: any): ProfitAndLossRecord; export declare function ProfitAndLossRecordFromJSONTyped(json: any, ignoreDiscriminator: boolean): ProfitAndLossRecord; export declare function ProfitAndLossRecordToJSON(value?: ProfitAndLossRecord | null): any;