Update WireMock.Org.Abstractions and WireMock.Org.RestClient (#765)

* Update WireMock.Org.Abstractions and WireMock.Org.RestClient

* .

* rename
This commit is contained in:
Stef Heyenrath
2022-07-08 11:02:18 +02:00
committed by GitHub
parent 4d0f96eabe
commit b1032c9dcd
42 changed files with 862 additions and 6736 deletions

View File

@@ -1,6 +1,6 @@
namespace WireMock.Org.Abstractions
{
public class Response
public class WireMockOrgResponse
{
/// <summary>
/// The HTTP status code to be returned
@@ -52,6 +52,11 @@ namespace WireMock.Org.Abstractions
/// </summary>
public int FixedDelayMilliseconds { get; set; }
/// <summary>
/// The delay distribution. Valid property configuration is either median/sigma/type or lower/type/upper.
/// </summary>
public object DelayDistribution { get; set; }
/// <summary>
/// Read-only flag indicating false if this was the default, unmatched response. Not present otherwise.
/// </summary>
@@ -70,6 +75,6 @@ namespace WireMock.Org.Abstractions
/// <summary>
/// List of names of transformers to apply to this response.
/// </summary>
public string Transformers { get; set; }
public string[] Transformers { get; set; }
}
}
}