mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-03-21 00:28:59 +01:00
30 lines
1005 B
C#
30 lines
1005 B
C#
using WireMock.Net.OpenApiParser.Types;
|
|
|
|
namespace WireMock.Net.OpenApiParser.Settings
|
|
{
|
|
/// <summary>
|
|
/// The WireMockOpenApiParser Settings
|
|
/// </summary>
|
|
public class WireMockOpenApiParserSettings
|
|
{
|
|
/// <summary>
|
|
/// The number of array items to generate (default is 3).
|
|
/// </summary>
|
|
public int NumberOfArrayItems { get; set; } = 3;
|
|
|
|
/// <summary>
|
|
/// The example value type to use when generating a Path
|
|
/// </summary>
|
|
public ExampleValueType PathPatternToUse { get; set; } = ExampleValueType.Value;
|
|
|
|
/// <summary>
|
|
/// The example value type to use when generating a Header
|
|
/// </summary>
|
|
public ExampleValueType HeaderPatternToUse { get; set; } = ExampleValueType.Value;
|
|
|
|
/// <summary>
|
|
/// The example values to use
|
|
/// </summary>
|
|
public WireMockOpenApiParserExampleValues ExampleValues { get; } = new WireMockOpenApiParserExampleValues();
|
|
}
|
|
} |