namespace WireMock.Admin.Mappings; /// /// Param Model /// [FluentBuilder.AutoGenerateBuilder] public class ParamModel { /// /// Gets or sets the name. /// public string Name { get; set; } = null!; /// /// Defines if the key should be matched using case-ignore. /// public bool? IgnoreCase { get; set; } /// /// Gets or sets the Reject on match for the Param Name. /// public bool? RejectOnMatch { get; set; } /// /// Gets or sets the matchers. /// public MatcherModel[]? Matchers { get; set; } }