// Copyright © WireMock.Net namespace WireMock.Admin.Mappings; /// /// Body Model /// [FluentBuilder.AutoGenerateBuilder] public class BodyModel { /// /// Gets or sets the matcher. /// public MatcherModel? Matcher { get; set; } /// /// Gets or sets the matchers. /// public MatcherModel[]? Matchers { get; set; } /// /// 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. /// public string? MatchOperator { get; set; } }