/** * Represents a transaction parameter. * @export * @class TransactionLineParameterModel */ export declare class TransactionLineParameterModel { /** * @type {string} * @memberof TransactionLineParameterModel */ name?: string | undefined; /** * @type {string} * @memberof TransactionLineParameterModel */ value?: string | undefined; /** * @type {string} * @memberof TransactionLineParameterModel */ unit?: string | undefined; }