using System;
using System.Collections.Generic;
using JetBrains.Annotations;
using WireMock.Matchers.Request;
namespace WireMock.RequestBuilders
{
///
/// The ParametersRequestBuilder interface.
///
public interface IParamsRequestBuilder
{
///
/// The with parameters.
///
///
/// The key.
///
///
/// The values.
///
///
/// The .
///
IRequestMatcher WithParam([NotNull] string key, params string[] values);
///
/// The with parameters.
///
///
/// The func.
///
///
/// The .
///
IRequestMatcher WithParam([NotNull] Func>, bool> func);
}
}