import * as Enums from '../enums/index'; import { LineItemModel } from "./LineItemModel"; /** * Model to add specific lines to exising transaction * @export * @class AddTransactionLineModel */ export declare class AddTransactionLineModel { /** * @type {string} * @memberof AddTransactionLineModel */ companyCode: string; /** * @type {string} * @memberof AddTransactionLineModel */ transactionCode: string; /** * @type {Enums.DocumentType} * @memberof AddTransactionLineModel */ documentType?: Enums.DocumentType | undefined; /** * @type {LineItemModel[]} * @memberof AddTransactionLineModel */ lines: LineItemModel[]; /** * @type {boolean} * @memberof AddTransactionLineModel */ renumber?: boolean | undefined; }