namespace RestEase
{
///
/// Type of serialization that should be applied to the query parameter's value
///
public enum QuerySerializationMethod
{
///
/// Serialized using its .ToString() method
///
ToString,
///
/// Serialized using the configured IRequestQueryParamSerializer (uses Json.NET by default)
///
Serialized,
///
/// Use the default serialization method. You probably don't want to specify this yourself
///
Default,
}
}