mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-01-16 07:06:54 +01:00
* wip * ... * . * ... * ... * path * url * b * t * client * . * RequestMessageMethodMatcherTests * . * h * . * fix tests * .
22 lines
611 B
C#
22 lines
611 B
C#
namespace WireMock.Admin.Mappings;
|
|
|
|
/// <summary>
|
|
/// PathModel
|
|
/// </summary>
|
|
[FluentBuilder.AutoGenerateBuilder]
|
|
public class PathModel
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets the matchers.
|
|
/// </summary>
|
|
public MatcherModel[]? Matchers { get; set; }
|
|
|
|
/// <summary>
|
|
/// The Operator to use when matchers are defined. [Optional]
|
|
/// - null = Same as "or".
|
|
/// - "or" = Only one pattern should match.
|
|
/// - "and" = All patterns should match.
|
|
/// - "average" = The average value from all patterns.
|
|
/// </summary>
|
|
public string? MatchOperator { get; set; }
|
|
} |