// Copyright © WireMock.Net
using System.Collections.Generic;
using WireMock.Types;
using WireMock.Util;
namespace WireMock.Settings;
///
/// WebhookSettings
///
public class WebhookSettings : HttpClientSettings
{
///
/// Executes an action after the transformation of the request body.
///
/// The mapping used for the request.
/// The request Url.
/// The body data of the request. [Optional]
/// The headers of the request. [Optional]
public virtual void PostTransform(IMapping mapping, string requestUrl, IBodyData? bodyData = null, IDictionary>? headers = null)
{
}
}