using WireMock.Net.OpenApiParser.Types;
namespace WireMock.Net.OpenApiParser.Settings
{
///
/// The WireMockOpenApiParser Settings
///
public class WireMockOpenApiParserSettings
{
///
/// The number of array items to generate (default is 3).
///
public int NumberOfArrayItems { get; set; } = 3;
///
/// The example value type to use when generating a Path
///
public ExampleValueType PathPatternToUse { get; set; } = ExampleValueType.Value;
///
/// The example value type to use when generating a Header
///
public ExampleValueType HeaderPatternToUse { get; set; } = ExampleValueType.Value;
///
/// The example values to use
///
public WireMockOpenApiParserExampleValues ExampleValues { get; } = new WireMockOpenApiParserExampleValues();
}
}