using Json.LitJson;
namespace ServiceClientGenerator.Endpoints
{
///
/// Object model for StaticContextParameter
/// StaticContextParameter used to map static value from service operation to ruleset parameter
///
public class StaticContextParameter
{
///
/// Parameter name
///
public string name { get; set; }
///
/// Parameter value
///
public JsonData value { get; set; }
///
/// Parameter native C# value
///
public string nativeValue { get { return value.ToNativeValue(); } }
}
}