// Copyright © WireMock.Net using JetBrains.Annotations; namespace WireMock.Settings; /// /// ProxySaveMappingSettings /// public class ProxySaveMappingSettings { /// /// Only save request/response to the internal Mappings if the status code is included in this pattern. (Note that SaveMapping must also be set to true.) /// The pattern can contain a single value like "200", but also ranges like "2xx", "100,300,600" or "100-299,6xx" are supported. /// [PublicAPI] public ProxySaveMappingSetting? StatusCodePattern { get; set; } = "*"; /// /// Only save these Http Methods. (Note that SaveMapping must also be set to true.) /// [PublicAPI] public ProxySaveMappingSetting? HttpMethods { get; set; } }