namespace WireMock.Matchers
{
///
/// IObjectMatcher
///
public interface IObjectMatcher : IMatcher
{
///
/// Determines whether the specified input is match.
///
/// The input.
/// A value between 0.0 - 1.0 of the similarity.
double IsMatch(object input);
}
}