using System.Text; using WireMock.Types; namespace WireMock.Util { /// /// BodyData /// public class BodyData : IBodyData { /// public Encoding? Encoding { get; set; } /// public string? BodyAsString { get; set; } /// public object? BodyAsJson { get; set; } /// public byte[]? BodyAsBytes { get; set; } /// public bool? BodyAsJsonIndented { get; set; } /// public string? BodyAsFile { get; set; } /// public bool? BodyAsFileIsCached { get; set; } /// public BodyType? DetectedBodyType { get; set; } /// public BodyType? DetectedBodyTypeFromContentType { get; set; } /// public string? DetectedCompression { get; set; } } }