import * as Enums from '../enums/index'; /** * Model to specify lines to be removed * @export * @class RemoveTransactionLineModel */ export declare class RemoveTransactionLineModel { /** * @type {string} * @memberof RemoveTransactionLineModel */ companyCode: string; /** * @type {string} * @memberof RemoveTransactionLineModel */ transactionCode: string; /** * @type {Enums.DocumentType} * @memberof RemoveTransactionLineModel */ documentType?: Enums.DocumentType | undefined; /** * @type {string[]} * @memberof RemoveTransactionLineModel */ lines: string[]; /** * @type {boolean} * @memberof RemoveTransactionLineModel */ renumber?: boolean | undefined; }