mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-02-21 00:08:05 +01:00
* Create WireMock.Net.MimePart project * . * REFACTOR * ILRepack * -- * ... * x * x * . * fix * public class MimePartMatcher * shared * min * . * <!--<DelaySign>true</DelaySign>--> * Update README.md Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --------- Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
43 lines
997 B
C#
43 lines
997 B
C#
// Copyright © WireMock.Net
|
|
|
|
using System.Collections.Generic;
|
|
using WireMock.Types;
|
|
using WireMock.Util;
|
|
|
|
namespace WireMock.Models;
|
|
|
|
/// <summary>
|
|
/// WebhookRequest
|
|
/// </summary>
|
|
public class WebhookRequest : IWebhookRequest
|
|
{
|
|
/// <inheritdoc />
|
|
public string Url { get; set; } = null!;
|
|
|
|
/// <inheritdoc />
|
|
public string Method { get; set; } = null!;
|
|
|
|
/// <inheritdoc />
|
|
public IDictionary<string, WireMockList<string>>? Headers { get; set; }
|
|
|
|
/// <inheritdoc />
|
|
public IBodyData? BodyData { get; set; }
|
|
|
|
/// <inheritdoc />
|
|
public bool? UseTransformer { get; set; }
|
|
|
|
/// <inheritdoc />
|
|
public TransformerType TransformerType { get; set; }
|
|
|
|
/// <inheritdoc />
|
|
public ReplaceNodeOptions TransformerReplaceNodeOptions { get; set; }
|
|
|
|
/// <inheritdoc />
|
|
public int? Delay { get; set; }
|
|
|
|
/// <inheritdoc />
|
|
public int? MinimumRandomDelay { get; set; }
|
|
|
|
/// <inheritdoc />
|
|
public int? MaximumRandomDelay { get; set; }
|
|
} |