// Copyright © WireMock.Net
namespace WireMock.ResponseBuilders;
///
/// Defines the BodyDestinationFormat
///
public static class BodyDestinationFormat
{
///
/// Same as source (no conversion)
///
public const string SameAsSource = "SameAsSource";
///
/// Convert to string
///
public const string String = "String";
///
/// Convert to bytes
///
public const string Bytes = "Bytes";
///
/// Convert to Json object
///
public const string Json = "Json";
}