mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-01-15 06:43:37 +01:00
30 lines
940 B
C#
30 lines
940 B
C#
using System.Collections.Generic;
|
|
using WireMock.Types;
|
|
using WireMock.Util;
|
|
|
|
namespace WireMock.Models
|
|
{
|
|
/// <summary>
|
|
/// WebhookRequest
|
|
/// </summary>
|
|
public class WebhookRequest : IWebhookRequest
|
|
{
|
|
/// <inheritdoc cref="IWebhookRequest.Url"/>
|
|
public string Url { get; set; }
|
|
|
|
/// <inheritdoc cref="IWebhookRequest.Method"/>
|
|
public string Method { get; set; }
|
|
|
|
/// <inheritdoc cref="IWebhookRequest.Headers"/>
|
|
public IDictionary<string, WireMockList<string>> Headers { get; set; }
|
|
|
|
/// <inheritdoc cref="IWebhookRequest.BodyData"/>
|
|
public IBodyData BodyData { get; set; }
|
|
|
|
/// <inheritdoc cref="IWebhookRequest.UseTransformer"/>
|
|
public bool? UseTransformer { get; set; }
|
|
|
|
/// <inheritdoc cref="IWebhookRequest.TransformerType"/>
|
|
public TransformerType TransformerType { get; set; }
|
|
}
|
|
} |