/// @param emodeId Type of emode we are entering in, each one is different deployment on Morpho
/// @param tokenAddr The address of the token to be paid back
/// @param amount Amount of tokens to be paid back
/// @param from Where are we pulling the payback tokens amount from
/// @param onBehalf For what user we are paying back the debt, defaults to user's wallet
struct Params {
uint256 emodeId;
address tokenAddr;
uint256 amount;
address from;
address onBehalf;
}