using System.Collections.Generic; namespace WireMock.Admin.Mappings { /// /// ResponseModel /// public class ResponseModel { /// /// Gets or sets the HTTP status. /// /// /// The HTTP status. /// public int? StatusCode { get; set; } /// /// Gets or sets the body. /// /// /// The body. /// public string Body { get; set; } /// /// Gets or sets the body. /// /// /// The body. /// public string BodyAsBase64 { get; set; } /// /// Gets or sets the body (as JSON object). /// /// /// The body. /// public object BodyAsJson { get; set; } /// /// Gets or sets a value indicating whether [use transformer]. /// /// /// true if [use transformer]; otherwise, false. /// public bool UseTransformer { get; set; } /// /// Gets or sets the headers. /// /// /// The headers. /// public IDictionary Headers { get; set; } } }