using System.Collections.Generic; using WireMock.Types; using WireMock.Util; namespace WireMock.Models; /// /// WebhookRequest /// public class WebhookRequest : IWebhookRequest { /// public string Url { get; set; } = null!; /// public string Method { get; set; } = null!; /// public IDictionary>? Headers { get; set; } /// public IBodyData? BodyData { get; set; } /// public bool? UseTransformer { get; set; } /// public TransformerType TransformerType { get; set; } /// public ReplaceNodeOptions TransformerReplaceNodeOptions { get; set; } /// public int? Delay { get; set; } /// public int? MinimumRandomDelay { get; set; } /// public int? MaximumRandomDelay { get; set; } }