using System.Collections.Generic; namespace WireMock.Admin.Mappings; /// /// Cookie Model /// [FluentBuilder.AutoGenerateBuilder] public class CookieModel { /// /// Gets or sets the name. /// public string Name { get; set; } = null!; /// /// Gets or sets the matchers. /// public IList? Matchers { get; set; } /// /// Gets or sets the ignore case. /// public bool? IgnoreCase { get; set; } /// /// Reject on match. /// public bool? RejectOnMatch { 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; } }