namespace WireMock.Admin.Mappings
{
///
/// Fault Model
///
[FluentBuilder.AutoGenerateBuilder]
public class FaultModel
{
///
/// Gets or sets the fault. Can be null, "", NONE, EMPTY_RESPONSE, MALFORMED_RESPONSE_CHUNK or RANDOM_DATA_THEN_CLOSE.
///
public string Type { get; set; }
///
/// Gets or sets the fault percentage.
///
public double? Percentage { get; set; }
}
}