AuctionInfo
Struct of dutch auction information
refundedFlag indicating if refunds are enabledstepLengthDuration (in seconds) of each auction steppricesArray of prices for each step of the auction
struct AuctionInfo {
bool refunded;
uint248 stepLength;
uint256[] prices;
}