namespace WireMock.Org.Abstractions
{
public class NearMisses
{
///
/// The HTTP request method
///
public string Method { get; set; }
///
/// The path and query to match exactly against
///
public string Url { get; set; }
///
/// The full URL to match against
///
public string AbsoluteUrl { get; set; }
///
/// Header patterns to match against in the : { "": "" } form
///
public object Headers { get; set; }
///
/// Cookie patterns to match against in the : { "": "" } form
///
public object Cookies { get; set; }
///
/// Body string to match against
///
public string Body { get; set; }
}
}