using System.Collections.Generic; namespace WireMock.Admin.Mappings { /// /// RequestModel /// public class RequestModel { /// /// Gets or sets the ClientIP. (Can be a string or a ClientIPModel) /// /// /// The ClientIP. /// public object ClientIP { get; set; } /// /// Gets or sets the Path. (Can be a string or a PathModel) /// /// /// The Path. /// public object Path { get; set; } /// /// Gets or sets the Url. (Can be a string or a UrlModel) /// /// /// The URL. /// public object Url { get; set; } /// /// The methods /// public string[] Methods { get; set; } /// /// Gets or sets the Headers. /// /// /// The Headers. /// public IList Headers { get; set; } /// /// Gets or sets the Cookies. /// /// /// The Cookies. /// public IList Cookies { get; set; } /// /// Gets or sets the Params. /// /// /// The Headers. /// public IList Params { get; set; } /// /// Gets or sets the body. /// /// /// The body. /// public BodyModel Body { get; set; } } }