namespace WireMock.Matchers;
///
/// IObjectMatcher
///
public interface IObjectMatcher : IMatcher
{
///
/// Gets the value (can be a string or an object).
///
/// Value
object Value { get; }
///
/// Determines whether the specified input is match.
///
/// The input.
/// MatchResult
MatchResult IsMatch(object? input);
}