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